Remove TRACE logs

This commit is contained in:
Gabriel Tofvesson 2024-11-27 23:49:58 +01:00
parent e62ab1d4f8
commit a2f8f000db

View File

@ -5,7 +5,7 @@ local CACHE_FILE = "/.storage.cache"
local LOCK_FILE = "/.storage.lock"
local LOG_FILE_PATH = "latest.log"
local Logger = Logging.firstLoad(
Logging.OUTPUTS.file(LOG_FILE_PATH),
Logging.OUTPUTS.file(LOG_FILE_PATH, LogLevel.INFO),
Logging.OUTPUTS.stdout(LogLevel.CRITICAL)
)