Bugfixing
[tpg/acess2.git] / Kernel / modules.c
index 786d409..98ca1a1 100644 (file)
@@ -144,7 +144,7 @@ int Module_int_Initialise(tModule *Module, const char *ArgString)
        
        // All Dependencies OK? Initialise
        StartupPrint(Module->Name);
-       Log_Log("Module", "Initialising %p '%s' v%i.%i...",
+       Log_Log("Module", "Starting %p '%s' v%i.%i",
                Module, Module->Name,
                Module->Version >> 8, Module->Version & 0xFF
                );
@@ -168,7 +168,7 @@ int Module_int_Initialise(tModule *Module, const char *ArgString)
                        Log_Warning("Module", "Unable to load, reason: Miscelanious");
                        break;
                case MODULE_ERR_NOTNEEDED:
-                       Log_Warning("Module", "Unable to load, reason: Module not needed");
+                       Log_Debug("Module", "Unable to load, reason: Module not needed");
                        break;
                case MODULE_ERR_MALLOC:
                        Log_Warning("Module", "Unable to load, reason: Error in malloc/realloc/calloc, probably not good");

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