diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-07-18 17:02:39 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-07-18 17:02:39 +0100 |
commit | a71d52ffd1531a4a03cb4c87dc56ace4f5cb33c1 (patch) | |
tree | d3cc5fcde9df08ff131a2216a44c73dee65fdc1f /NorthstarDedicatedTest/squirrel.cpp | |
parent | ca5db71e8215a6c5660fe03088a6d7349f55f817 (diff) | |
download | NorthstarLauncher-a71d52ffd1531a4a03cb4c87dc56ace4f5cb33c1.tar.gz NorthstarLauncher-a71d52ffd1531a4a03cb4c87dc56ace4f5cb33c1.zip |
add rapidjson, move all logging to spdlog
Diffstat (limited to 'NorthstarDedicatedTest/squirrel.cpp')
-rw-r--r-- | NorthstarDedicatedTest/squirrel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NorthstarDedicatedTest/squirrel.cpp b/NorthstarDedicatedTest/squirrel.cpp index e78b26f2..90d16e89 100644 --- a/NorthstarDedicatedTest/squirrel.cpp +++ b/NorthstarDedicatedTest/squirrel.cpp @@ -70,7 +70,7 @@ template<Context context> SQInteger SQPrintHook(void* sqvm, char* fmt, ...) void* CreateNewVMHook(void* a1, Context context) { - std::cout << "CreateNewVM " << GetContextName(context) << std::endl; + spdlog::info("CreateNewVM {}", GetContextName(context)); if (context == CLIENT) { |