--- trunk/RomCheater/Main.cs 2012/05/09 23:10:12 98 +++ trunk/RomCheater/Main.cs 2012/05/09 23:23:38 99 @@ -1,4 +1,5 @@ -using System; +#define FORCE_ALL_LOGGING_FLAGS // when defined will force logging flags to ALL +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; @@ -48,7 +49,10 @@ namespace RomCheater private void load_loggerflags() { - logger.SetLoggingFlags((loggerflags)Logging.Properties.Settings.Default.LoggingFlags); + logger.SetLoggingFlags((loggerflags)Logging.Properties.Settings.Default.LoggingFlags); +#if FORCE_ALL_LOGGING_FLAGS + logger.SetLoggingFlags(loggerflags.ALL); +#endif } private void load_plugins() { |