fix regex

This commit is contained in:
2024-05-19 19:24:16 +02:00
parent a9e981baa0
commit c52e92e3ce
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ import log from "loglevel";
import { apply, reg } from "loglevel-plugin-prefix";
export function initLogger() {
log.setLevel(import.meta.env.VITE_LOG_LEVEL ?? 'info');
log.setLevel(import.meta.env.VITE_LOG_LEVEL);
reg(log);
apply(log, {template: '[%t] %l:'});
}