You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4cxx-dev@logging.apache.org by ca...@apache.org on 2007/12/23 01:01:33 UTC

svn commit: r606520 - /logging/log4cxx/trunk/src/main/cpp/domconfigurator.cpp

Author: carnold
Date: Sat Dec 22 16:01:32 2007
New Revision: 606520

URL: http://svn.apache.org/viewvc?rev=606520&view=rev
Log:
LOGCXX-85: Fix APR_HAS_THREADS=0 code in domconfigurator

Modified:
    logging/log4cxx/trunk/src/main/cpp/domconfigurator.cpp

Modified: logging/log4cxx/trunk/src/main/cpp/domconfigurator.cpp
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/cpp/domconfigurator.cpp?rev=606520&r1=606519&r2=606520&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/cpp/domconfigurator.cpp (original)
+++ logging/log4cxx/trunk/src/main/cpp/domconfigurator.cpp Sat Dec 22 16:01:32 2007
@@ -801,7 +801,7 @@
         xdog->setDelay(delay);
         xdog->start();
 #else
-     configure(file);
+    DOMConfigurator().doConfigure(file, LogManager::getLoggerRepository());
 #endif        
 }
 
@@ -814,7 +814,7 @@
         xdog->setDelay(delay);
         xdog->start();
 #else
-     configure(file);
+    DOMConfigurator().doConfigure(file, LogManager::getLoggerRepository());
 #endif        
 }
 #endif
@@ -828,7 +828,7 @@
         xdog->setDelay(delay);
         xdog->start();
 #else
-     configure(file);
+    DOMConfigurator().doConfigure(file, LogManager::getLoggerRepository());
 #endif        
 }
 #endif
@@ -842,7 +842,7 @@
         xdog->setDelay(delay);
         xdog->start();
 #else
-     configure(file);
+    DOMConfigurator().doConfigure(file, LogManager::getLoggerRepository());
 #endif        
 }
 #endif