From 91c7d06edc6a64d360327cd334c77078a63bf674 Mon Sep 17 00:00:00 2001 From: GreemDev Date: Fri, 20 Feb 2026 15:35:35 -0600 Subject: [PATCH] Disable debug defines by default --- libMBIN/Source/Template/NMSTemplate.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libMBIN/Source/Template/NMSTemplate.cs b/libMBIN/Source/Template/NMSTemplate.cs index e81effff9..2e8e9ceba 100644 --- a/libMBIN/Source/Template/NMSTemplate.cs +++ b/libMBIN/Source/Template/NMSTemplate.cs @@ -2,16 +2,16 @@ // They will always be disabled/ignored in Release builds. // Uncomment to enable debug logging of the template de/serialization. -#define DEBUG_TEMPLATE +// #define DEBUG_TEMPLATE // Uncomment to enable debug logging of XML comments // #define DEBUG_COMMENTS // Uncomment to enable debug logging of MBIN field names -#define DEBUG_FIELD_NAMES +// #define DEBUG_FIELD_NAMES // Uncomment to enable debug logging of XML property names -#define DEBUG_PROPERTY_NAMES +// #define DEBUG_PROPERTY_NAMES using System;