Skip to content

Commit 0809a0e

Browse files
committed
fix(log): fix
1 parent df2baa4 commit 0809a0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/vue/src/grid/src/tools/logger.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { log } from '@opentiny/vue-renderless/common'
1+
import { log } from '@opentiny/utils'
22
import GlobalConfig from '../config'
33

44
const outLog = (type) => (message, detail) => {
@@ -8,7 +8,7 @@ const outLog = (type) => (message, detail) => {
88
msg += `: ${detail}`
99
}
1010

11-
log(msg, type)
11+
log.logger.log(msg, type)
1212

1313
return msg
1414
}

0 commit comments

Comments
 (0)