Shit ton of changes in changing and upgrading to use svk's modern features (observability, remote functions)

This commit is contained in:
user
2026-02-28 18:40:50 +02:00
parent f520e8842f
commit d9e89a345e
14 changed files with 1907 additions and 146 deletions

View File

@@ -40,7 +40,7 @@ const colors = {
const level = () => {
const envLevel = process.env.LOG_LEVEL?.toLowerCase();
if (envLevel && envLevel in levels) {
if (envLevel && envLevel in Object.keys(levels)) {
return envLevel;
}
return settings.isDevelopment ? "debug" : "warn";