aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorF1F7Y <64418963+F1F7Y@users.noreply.github.com>2023-09-17 02:40:00 +0200
committerGitHub <noreply@github.com>2023-09-17 02:40:00 +0200
commit0cbdd5672815f956e6b2d2de48d596e87514a07b (patch)
treee293d79013b3eec4e94a610e475a7cb35c5fe102
parentaf1df846a32f66e02ab1dbb1b7d12007e893204c (diff)
downloadNorthstarLauncher-0cbdd5672815f956e6b2d2de48d596e87514a07b.tar.gz
NorthstarLauncher-0cbdd5672815f956e6b2d2de48d596e87514a07b.zip
Set `spewlog_enable` default value to `0` (#516)v1.19.1-rc1v1.19.1v1.19.0-rc1v1.19.0
-rw-r--r--NorthstarDLL/logging/loghooks.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/NorthstarDLL/logging/loghooks.cpp b/NorthstarDLL/logging/loghooks.cpp
index 53a85c1b..41e1bce2 100644
--- a/NorthstarDLL/logging/loghooks.cpp
+++ b/NorthstarDLL/logging/loghooks.cpp
@@ -249,7 +249,7 @@ ON_DLL_LOAD_RELIESON("engine.dll", EngineSpewFuncHooks, ConVar, (CModule module)
{
AUTOHOOK_DISPATCH_MODULE(engine.dll)
- Cvar_spewlog_enable = new ConVar("spewlog_enable", "1", FCVAR_NONE, "Enables/disables whether the engine spewfunc should be logged");
+ Cvar_spewlog_enable = new ConVar("spewlog_enable", "0", FCVAR_NONE, "Enables/disables whether the engine spewfunc should be logged");
}
ON_DLL_LOAD_CLIENT_RELIESON("client.dll", ClientPrintHooks, ConVar, (CModule module))