Browse Source

Remove outdated log messages

develop
Anton Tarasenko 3 years ago
parent
commit
280cf5af57
  1. 10
      sources/Packages.uc

10
sources/Packages.uc

@ -72,8 +72,8 @@ private final function BootUp()
nextManifest = LoadManifestClass(corePackage); nextManifest = LoadManifestClass(corePackage);
if (nextManifest == none) if (nextManifest == none)
{ {
_.logger.Fatal("Cannot load required AcediaCore package \"" /*_.logger.Fatal("Cannot load required AcediaCore package \""
$ corePackage $ "\". Acedia will shut down."); $ corePackage $ "\". Acedia will shut down.");*/
Destroy(); Destroy();
return; return;
} }
@ -84,9 +84,9 @@ private final function BootUp()
nextManifest = LoadManifestClass(package[i]); nextManifest = LoadManifestClass(package[i]);
if (nextManifest == none) if (nextManifest == none)
{ {
_.logger.Failure("Cannot load `Manifest` for package \"" /*_.logger.Failure("Cannot load `Manifest` for package \""
$ package[i] $ "\". Check if it's missing or" $ package[i] $ "\". Check if it's missing or"
@ "if it's name is spelled incorrectly."); @ "if it's name is spelled incorrectly.");*/
continue; continue;
} }
LoadManifest(nextManifest); LoadManifest(nextManifest);
@ -113,7 +113,7 @@ private final function RunStartUpTests()
} }
else else
{ {
_.logger.Failure("Could not launch Acedia's start up testing process."); //_.logger.Failure("Could not launch Acedia's start up testing process.");
} }
} }

Loading…
Cancel
Save