Fix global reference

This commit is contained in:
Gabriel Tofvesson 2024-10-14 13:44:38 +02:00
parent ce0f82c778
commit 6bb6c0e822

View File

@ -270,10 +270,10 @@ Logging.Logger = Logger
Logging.LogLevel = LogLevel
function Logging.getGlobalLogger()
if _GLOBAL_LOGGER == nil then
_GLOBAL_LOGGER = Logger:new{ level = LogLevel.DEBUG, output = print }
if _G._GLOBAL_LOGGER == nil then
_G._GLOBAL_LOGGER = Logger:new{ level = LogLevel.DEBUG, output = print }
end
return _GLOBAL_LOGGER
return _G._GLOBAL_LOGGER
end
return Logging