Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: should add paddingMessage on ConsoleLogger #93

Merged
merged 1 commit into from
Dec 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,12 @@

// output to Terminal format
consoleFormatter(meta) {
let msg = meta.date + ' ' + meta.level + ' ' + meta.pid + ' ' + meta.message;
let paddingMessage = ' ';
// try to use the exists paddingMessage first
if (meta.paddingMessage) {
paddingMessage = ` ${meta.paddingMessage} `;
}

Check warning on line 79 in lib/utils.js

View check run for this annotation

Codecov / codecov/patch

lib/utils.js#L78-L79

Added lines #L78 - L79 were not covered by tests
let msg = meta.date + ' ' + meta.level + ' ' + meta.pid + paddingMessage + meta.message;
if (!chalk.supportsColor) {
return msg;
}
Expand Down