From 623ffc6be7e840209cb1a5422c44040842abbdee Mon Sep 17 00:00:00 2001 From: kaetemi Date: Sun, 17 Nov 2019 16:36:42 +0800 Subject: [PATCH] Debug logs should not be disabled in DEV client... --- code/ryzom/client/src/client.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/ryzom/client/src/client.cpp b/code/ryzom/client/src/client.cpp index 69559e0e8..2dbdced45 100644 --- a/code/ryzom/client/src/client.cpp +++ b/code/ryzom/client/src/client.cpp @@ -158,8 +158,8 @@ int main(int argc, char **argv) // init the Nel context CApplicationContext *appContext = new CApplicationContext; - // disable nldebug messages in logs in Release -#ifdef NL_RELEASE + // disable nldebug messages in logs in FV +#if FINAL_VERSION && defined(NL_RELEASE) DisableNLDebug = true; #endif