Skip to content

Commit

Permalink
fix: decrease level of non-supported-version logs to warn (open-telem…
Browse files Browse the repository at this point in the history
  • Loading branch information
Naseem authored and mihirsoni committed Sep 21, 2020
1 parent 3f51629 commit 6723a3a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export class PluginLoader {
try {
const plugin: Plugin = require(modulePath).plugin;
if (!utils.isSupportedVersion(version, plugin.supportedVersions)) {
this.logger.error(
this.logger.warn(
`PluginLoader#load: Plugin ${name} only supports module ${plugin.moduleName} with the versions: ${plugin.supportedVersions}`
);
return exports;
Expand Down

0 comments on commit 6723a3a

Please sign in to comment.