Skip to content

Commit 0af9fc4

Browse files
committed
feat(plugin): logger.debug()
1 parent 04c6c13 commit 0af9fc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/base/plugin/logger.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ wrap(() => {
22
const name = 'logger';
33
function mod(plugin) {
44
const obj = {};
5-
['info', 'error', 'log', 'warn'].forEach((key) => {
5+
['info', 'error', 'log', 'warn', 'debug'].forEach((key) => {
66
obj[key] = (...args) => console[key]( // eslint-disable-line no-console
77
`[%c${plugin.name}%c/${key}]`,
88
'color: #436ad6;',

0 commit comments

Comments
 (0)