1 |
< |
using System; |
1 |
> |
#define FORCE_ALL_LOGGING_FLAGS // when defined will force logging flags to ALL |
2 |
> |
using System; |
3 |
|
using System.Collections.Generic; |
4 |
|
using System.ComponentModel; |
5 |
|
using System.Data; |
49 |
|
|
50 |
|
private void load_loggerflags() |
51 |
|
{ |
52 |
< |
logger.SetLoggingFlags((loggerflags)Logging.Properties.Settings.Default.LoggingFlags); |
52 |
> |
logger.SetLoggingFlags((loggerflags)Logging.Properties.Settings.Default.LoggingFlags); |
53 |
> |
#if FORCE_ALL_LOGGING_FLAGS |
54 |
> |
logger.SetLoggingFlags(loggerflags.ALL); |
55 |
> |
#endif |
56 |
|
} |
57 |
|
private void load_plugins() |
58 |
|
{ |