Bugfix in extended logger
This commit is contained in:
parent
36c8ea1ac5
commit
6c85e4dff9
1 changed files with 5 additions and 3 deletions
|
@ -86,7 +86,7 @@ DeclareModule lhs_log_ext
|
||||||
EndDeclareModule
|
EndDeclareModule
|
||||||
|
|
||||||
Module lhs_log_ext
|
Module lhs_log_ext
|
||||||
XIncludeFile "lhs_uuid.pbi"
|
IncludeFile "lhs_uuid.pbi"
|
||||||
|
|
||||||
Global CreateLoggerMutex.i = CreateMutex()
|
Global CreateLoggerMutex.i = CreateMutex()
|
||||||
Global ConsoleMutex.i = CreateMutex()
|
Global ConsoleMutex.i = CreateMutex()
|
||||||
|
@ -106,7 +106,7 @@ Module lhs_log_ext
|
||||||
Logger(InternalUUID)\ExitSemaphore = CreateSemaphore()
|
Logger(InternalUUID)\ExitSemaphore = CreateSemaphore()
|
||||||
Logger(InternalUUID)\MaxSize.q = 32 * 1024 * 1024
|
Logger(InternalUUID)\MaxSize.q = 32 * 1024 * 1024
|
||||||
Logger(InternalUUID)\LastSize.q = 0
|
Logger(InternalUUID)\LastSize.q = 0
|
||||||
Logger(InternalUUID)\LogLevel.i = #Info
|
Logger(InternalUUID)\LogLevel.i = #Debugging
|
||||||
Logger(InternalUUID)\LogFileDateFormat.s = "%yyyy_%mm_%dd_%hh_%ii_%ss"
|
Logger(InternalUUID)\LogFileDateFormat.s = "%yyyy_%mm_%dd_%hh_%ii_%ss"
|
||||||
Logger(InternalUUID)\LogDateFormat.s = "%yyyy.%mm.%dd %hh:%ii:%ss"
|
Logger(InternalUUID)\LogDateFormat.s = "%yyyy.%mm.%dd %hh:%ii:%ss"
|
||||||
Logger(InternalUUID)\console = #NoConsole
|
Logger(InternalUUID)\console = #NoConsole
|
||||||
|
@ -165,8 +165,10 @@ Module lhs_log_ext
|
||||||
Logger(UUID)\LogLevel = #Warning
|
Logger(UUID)\LogLevel = #Warning
|
||||||
Case #Error
|
Case #Error
|
||||||
Logger(UUID)\LogLevel = #Error
|
Logger(UUID)\LogLevel = #Error
|
||||||
|
Case #Debug
|
||||||
|
Logger(UUID)\LogLevel = #Debugging
|
||||||
Default
|
Default
|
||||||
Logger(UUID)\LogLevel = #Error
|
Logger(UUID)\LogLevel = #Debugging
|
||||||
EndSelect
|
EndSelect
|
||||||
EndIf
|
EndIf
|
||||||
EndProcedure
|
EndProcedure
|
||||||
|
|
Loading…
Reference in a new issue