X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Flogging.c;h=6ba68bff99cf7d1dcea89c206d8b7ac42800987f;hb=ccd6cf2af99fdc050888c70eb4d59f078a15a2da;hp=507ff07cf70ac01d69eabebd04e28ac2c7e5afeb;hpb=deb8a310abcb8ef8b6afef74a1fa058777740b3f;p=tpg%2Facess2.git diff --git a/Kernel/logging.c b/Kernel/logging.c index 507ff07c..6ba68bff 100644 --- a/Kernel/logging.c +++ b/Kernel/logging.c @@ -123,6 +123,7 @@ void Log_AddEvent(char *Ident, int Level, char *Format, va_list Args) */ void Log_Int_PrintMessage(tLogEntry *Entry) { + //LOCK( &glLogOutput ); LogF("%s%014lli%s [%+8s] %s\x1B[0m\n", csaLevelColours[Entry->Level], Entry->Time, @@ -130,6 +131,7 @@ void Log_Int_PrintMessage(tLogEntry *Entry) Entry->Ident, Entry->Data ); + //RELEASE( &glLogOutput ); } /**