diff --git a/js/src/utils/logger.ts b/js/src/utils/logger.ts index 53250f0976d..8a82e948d78 100644 --- a/js/src/utils/logger.ts +++ b/js/src/utils/logger.ts @@ -2,6 +2,7 @@ import { getEnvVariable } from "./shared"; // Define log levels with corresponding priorities export const LOG_LEVELS = { + silent: -1, // No logs error: 0, // Highest priority - critical errors warn: 1, // Warning messages info: 2, // General information