[Logging] Add stack trace in code paths that shouldn't occur (#2453)

* [Logging] Add stack trace in code paths that shouldn't occur

* Update zone_store.cpp

* Windows workaround
This commit is contained in:
Chris Miles
2022-09-28 13:32:39 -05:00
committed by GitHub
parent f8e7576ae7
commit f357361474
6 changed files with 4496 additions and 5 deletions
+3
View File
@@ -1,3 +1,5 @@
#include "../../common/zone_store.h"
void WorldserverCLI::TestCommand(int argc, char **argv, argh::parser &cmd, std::string &description)
{
description = "Test command";
@@ -6,4 +8,5 @@ void WorldserverCLI::TestCommand(int argc, char **argv, argh::parser &cmd, std::
return;
}
zone_store.GetZoneName(0, false);
}