1
0
Fork 0
mirror of synced 2024-08-12 08:31:27 +12:00

Use log rather than warn for logInfo

This commit is contained in:
Andrew Kingston 2022-07-25 12:22:27 +01:00
parent f82b407f30
commit 8bd254f313

View file

@ -16,7 +16,7 @@ export function logAlert(message: string, e?: any) {
} }
export function logInfo(message: string) { export function logInfo(message: string) {
console.warn(`bb-info: ${message}`) console.log(`bb-info: ${message}`)
} }
export default { export default {