swebb2066 opened a new pull request, #137:
URL: https://github.com/apache/logging-log4cxx/pull/137

   This PR also allows the user to specify of the configuration file and the 
watch seconds in program code.
   
   This make automatic configuration more useful by allowing the configuration 
file and watch seconds to be set in a user's getLogger().
   
   For example:
   
   ```
   log4cxx::LoggerPtr MyLogManager::getLogger(const log4cxx::LogString& name)
   {
     static std::once_flag initialize_log4cxx;
     static std::call_once(initialize_log4cxx, myLog4cxxInitializer);
     return log4cxx::getLogger(name);
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to