diff options
Diffstat (limited to 'src/shared')
| -rw-r--r-- | src/shared/Log.cpp | 2 | ||||
| -rw-r--r-- | src/shared/Log.h | 3 | ||||
| -rw-r--r-- | src/shared/revision_nr.h | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/src/shared/Log.cpp b/src/shared/Log.cpp index c0f70f4790b..2d756f65159 100644 --- a/src/shared/Log.cpp +++ b/src/shared/Log.cpp @@ -245,6 +245,8 @@ void Log::Initialize() m_logFilter |= LOG_FILTER_CREATURE_MOVES; if(sConfig.GetBoolDefault("LogFilter_VisibilityChanges", true)) m_logFilter |= LOG_FILTER_VISIBILITY_CHANGES; + if(sConfig.GetBoolDefault("LogFilter_AchievementUpdates", true)) + m_logFilter |= LOG_FILTER_ACHIEVEMENT_UPDATES; // Char log settings m_charLog_Dump = sConfig.GetBoolDefault("CharLogDump", false); diff --git a/src/shared/Log.h b/src/shared/Log.h index b4344eac262..6913cc3c12c 100644 --- a/src/shared/Log.h +++ b/src/shared/Log.h @@ -31,7 +31,8 @@ enum LogFilters { LOG_FILTER_TRANSPORT_MOVES = 1, LOG_FILTER_CREATURE_MOVES = 2, - LOG_FILTER_VISIBILITY_CHANGES = 4 + LOG_FILTER_VISIBILITY_CHANGES = 4, + LOG_FILTER_ACHIEVEMENT_UPDATES= 8 }; enum Color diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 278a8f916ab..377261b73fd 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7417" + #define REVISION_NR "7418" #endif // __REVISION_NR_H__ |
