Skip to content

Commit

Permalink
fix: decrease level of non-supported-version logs to warn (#1532)
Browse files Browse the repository at this point in the history
  • Loading branch information
Naseem committed Sep 15, 2020
1 parent f824195 commit 3309ea4
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 3309ea4

Please sign in to comment.