Skip to content

Commit

Permalink
fix: downgraded the message for missing formatters
Browse files Browse the repository at this point in the history
This isn't really an error, the code still works.
  • Loading branch information
ColinEberhardt committed Mar 31, 2023
1 parent 9a8958b commit 7a50587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ async function generate(schemaPathOrUrl, generatorPathOrUrl, options) {
const formatter = require(path.resolve(generatorPath, "./formatter.js"));
await formatter(outputFolder, log.getLogLevel());
} catch {
log.error(`No formatter found in ${generatorPath}`);
log.verbose(`No formatter found in ${generatorPath}`);
}
} catch (e) {
exception = e;
Expand Down

0 comments on commit 7a50587

Please sign in to comment.