-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: make warning and error level output prefix consistent
- Loading branch information
Showing
2 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,24 @@ | ||
const log = require("loglevel"); | ||
const prefix = require("loglevel-plugin-prefix"); | ||
|
||
prefix.reg(log); | ||
if (process.env.NODE_ENV == "test") { | ||
prefix.reg(log); | ||
prefix.apply(log, { | ||
// eslint-disable-next-line no-unused-vars | ||
format(level, name, timestamp) { | ||
return "[test]"; | ||
} | ||
}); | ||
} else { | ||
prefix.apply(log, { | ||
// eslint-disable-next-line no-unused-vars | ||
format(level, name, timestamp) { | ||
if (level == "ERROR" || level == "WARN") { | ||
return `[${level}]`; | ||
} | ||
return ""; | ||
} | ||
}); | ||
} | ||
|
||
module.exports = log; |