2023-04-08 10:16:06 +00:00
|
|
|
import { consola } from 'consola'
|
2022-02-16 21:34:32 +00:00
|
|
|
|
|
|
|
export const logger = consola
|
|
|
|
|
2023-04-08 10:16:06 +00:00
|
|
|
export function useLogger (tag?: string) {
|
|
|
|
return tag ? logger.withTag(tag) : logger
|
2022-02-16 21:34:32 +00:00
|
|
|
}
|