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
1 changed files with 1 additions and 1 deletions

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 {