Core/Log: Also add DebugLogMask config to authserver. Only logical value as of right now is 64

This commit is contained in:
Machiavelli
2011-02-20 20:26:55 +01:00
parent e07e20ffca
commit 250bc09ded

View File

@@ -86,6 +86,22 @@ LogLevel = 0
LogFile = "Auth.log"
#
# Debug Log Mask
# Description: Bitmask that determines which debug log output (level 3)
# will be logged.
# Possible flags:
#
# 64 - Anything related to network input/output,
# such as packet handlers and netcode logs
#
# Simply add the values together to create a bitmask.
# For more info see enum DebugLogFilters in Log.h
#
# Default: 0 (nothing)
DebugLogMask = 64
#
# SQLDriverLogFile
# Description: Log file for SQL driver events.