Disable file rotation in AsyncFileLogger

This commit disables file rotation in AsyncFileLogger. AsyncFileLogger
is primarily meant to log messages during FRU VPD collection, and these
logs should not be rotate.

Change-Id: Ibde8ee59faecec5c0ca5cbcf85324ee07eba8b93
Signed-off-by: Souvik Roy <souvikroyofficial10@gmail.com>
diff --git a/vpd-manager/src/logger.cpp b/vpd-manager/src/logger.cpp
index 321237f..1e133f0 100644
--- a/vpd-manager/src/logger.cpp
+++ b/vpd-manager/src/logger.cpp
@@ -205,11 +205,6 @@
                 // unlock mutex on queue
                 l_lock.unlock();
 
-                if (++m_currentNumEntries > m_maxEntries)
-                {
-                    rotateFile();
-                }
-
                 // flush the message to file
                 m_fileStream << l_logMessage << std::endl;