Index: src/liblogger/TAsyncMultiLogger.cpp =================================================================== diff -u -N -r800b6e4dd2e62623eab76ac2d16d63af2a67a045 -ra08ca9e12d93e9a036a5cf739348ff3ef2a58be8 --- src/liblogger/TAsyncMultiLogger.cpp (.../TAsyncMultiLogger.cpp) (revision 800b6e4dd2e62623eab76ac2d16d63af2a67a045) +++ src/liblogger/TAsyncMultiLogger.cpp (.../TAsyncMultiLogger.cpp) (revision a08ca9e12d93e9a036a5cf739348ff3ef2a58be8) @@ -78,9 +78,13 @@ return m_spGlobalRotationInfo; } - void TAsyncMultiLogger::SetRotationInfo(unsigned int uiMaxLogSize, unsigned int uiMaxRotatedCount) + void TAsyncMultiLogger::SetMaxLogSize(unsigned int uiMaxLogSize) { m_spGlobalRotationInfo->SetMaxLogSize(uiMaxLogSize); + } + + void TAsyncMultiLogger::SetMaxRotatedCount(unsigned int uiMaxRotatedCount) + { m_spGlobalRotationInfo->SetRotatedCount(uiMaxRotatedCount); }