chore(Core/Logging): replace most server loggers (#5726)

* chore(Core/Logging): replace most server loggers

Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com>
This commit is contained in:
Kargatum
2021-06-21 08:07:12 +07:00
committed by GitHub
parent 9f80a592bb
commit 5787d00d54
199 changed files with 2312 additions and 4487 deletions

View File

@@ -976,15 +976,12 @@ public:
if (dontdel_str)
{
//LOG_ERROR("server", "DEBUG: All 3 params are set");
// All 3 params are set
// GUID
// type
// doNotDEL
if (stricmp(dontdel_str, "NODEL") == 0)
{
//LOG_ERROR("server", "DEBUG: doNotDelete = true;");
doNotDelete = true;
}
}
@@ -993,10 +990,8 @@ public:
// Only 2 params - but maybe NODEL is set
if (type_str)
{
LOG_ERROR("server", "DEBUG: Only 2 params ");
if (stricmp(type_str, "NODEL") == 0)
{
//LOG_ERROR("server", "DEBUG: type_str, NODEL ");
doNotDelete = true;
type_str = nullptr;
}