Kernel/ACPI - Added initialisation call, unimplimented debugging
[tpg/acess2.git] / KernelLand / Kernel / logging.c
index 323e84b..aab25a1 100644 (file)
@@ -91,12 +91,10 @@ void Log_AddEvent(const char *Ident, int Level, const char *Format, va_list Args
        va_list args_tmp;
        
        if( Level >= NUM_LOG_LEVELS )   return;
-       
+
        va_copy(args_tmp, Args);
        len = vsnprintf(NULL, 256, Format, args_tmp);
        
-       //Log("len = %i", len);
-       
        #if USE_RING_BUFFER || !CACHE_MESSAGES
        {
        char    buf[sizeof(tLogEntry)+len+1];

UCC git Repository :: git.ucc.asn.au