1
0
Fork 0
mirror of synced 2024-07-07 07:15:43 +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) {
console.warn(`bb-info: ${message}`)
console.log(`bb-info: ${message}`)
}
export default {