diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/configreader.h | 3 | ||||
-rw-r--r-- | include/filelogger.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/configreader.h b/include/configreader.h index 02ed3d561..6cd355176 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -430,6 +430,9 @@ class CoreExport ServerConfig */ bool OperSpyWhois; + /** True if raw I/O is being logged */ + bool RawLog; + /** Set to a non-empty string to obfuscate the server name of users in WHOIS */ std::string HideWhoisServer; diff --git a/include/filelogger.h b/include/filelogger.h index 1aefc0a35..731a6dcad 100644 --- a/include/filelogger.h +++ b/include/filelogger.h @@ -20,6 +20,7 @@ * */ enum DebugLevel { + RAWIO = 5, DEBUG = 10, VERBOSE = 20, DEFAULT = 30, |