From 280cf5af57e011304e513f27e8799f9e36903038 Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Wed, 28 Jul 2021 02:28:38 +0700 Subject: [PATCH] Remove outdated log messages --- sources/Packages.uc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sources/Packages.uc b/sources/Packages.uc index 709c153..6e6bff9 100644 --- a/sources/Packages.uc +++ b/sources/Packages.uc @@ -72,8 +72,8 @@ private final function BootUp() nextManifest = LoadManifestClass(corePackage); if (nextManifest == none) { - _.logger.Fatal("Cannot load required AcediaCore package \"" - $ corePackage $ "\". Acedia will shut down."); + /*_.logger.Fatal("Cannot load required AcediaCore package \"" + $ corePackage $ "\". Acedia will shut down.");*/ Destroy(); return; } @@ -84,9 +84,9 @@ private final function BootUp() nextManifest = LoadManifestClass(package[i]); 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" - @ "if it's name is spelled incorrectly."); + @ "if it's name is spelled incorrectly.");*/ continue; } LoadManifest(nextManifest); @@ -113,7 +113,7 @@ private final function RunStartUpTests() } else { - _.logger.Failure("Could not launch Acedia's start up testing process."); + //_.logger.Failure("Could not launch Acedia's start up testing process."); } }