OSDN Git Service

UT問題対処
authormeguro <meguro@1ed66053-1c2d-0410-8867-f7571e6e31d3>
Thu, 17 Dec 2009 06:25:20 +0000 (06:25 +0000)
committermeguro <meguro@1ed66053-1c2d-0410-8867-f7571e6e31d3>
Thu, 17 Dec 2009 06:25:20 +0000 (06:25 +0000)
git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel@9208 1ed66053-1c2d-0410-8867-f7571e6e31d3

l7vsd/include/logger_implement_access.h

index 9e6838f..5232c8e 100644 (file)
@@ -36,6 +36,7 @@
 #include <boost/tr1/unordered_map.hpp>
 #include <boost/foreach.hpp>
 #include "appender_property.h"
+#include "logger.h"
 #include "logger_logrotate_utility.h"
 
 #define LOGGER_ACCESS_PROCESS_ID "AccessLog"
@@ -108,11 +109,13 @@ public:
         catch (const std::exception& ex) {
             std::ostringstream oss;
             oss << "Logging Error (Access Log) : " << ex.what();
-            logger_logrotate_utility::loglotation_utility_logic_error(
-                                                                   118,
-                                                                   oss.str(),
-                                                                   __FILE__,
-                                                                   __LINE__ );
+            Logger::putLogError(
+                          LOG_CAT_L7VSD_SESSION,
+                          3,
+                          oss.str(),
+                          __FILE__,
+                          __LINE__ );
+
         }
     }