You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4net-dev@logging.apache.org by "Ron Grabowski (JIRA)" <ji...@apache.org> on 2008/08/24 17:39:44 UTC

[jira] Resolved: (LOG4NET-153) Make it easier to configure multiple appenders in code using BasicConfigurator

     [ https://issues.apache.org/jira/browse/LOG4NET-153?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ron Grabowski resolved LOG4NET-153.
-----------------------------------

    Resolution: Fixed

Fixed in r653963.

> Make it easier to configure multiple appenders in code using BasicConfigurator
> ------------------------------------------------------------------------------
>
>                 Key: LOG4NET-153
>                 URL: https://issues.apache.org/jira/browse/LOG4NET-153
>             Project: Log4net
>          Issue Type: Improvement
>    Affects Versions: 1.2.10
>            Reporter: Ron Grabowski
>            Priority: Minor
>             Fix For: 1.2.11
>
>
> Users wanting to configure log4net in code using more than just a single appender must cast the repository into a Hierarchy then manually add elements:
>  Repository.Hierarchy.Hierarchy hierarchy = 
>      (Repository.Hierarchy.Hierarchy)LogManager.GetRepository();
>  hierarchy.Root.AddAppender(alpha);
>  hierarchy.Root.AddAppender(beta);
>  hierarchy.Configured = true;
> The BasicConfigurator should make it easier to accomplish this:
>  BasicConfigurator.Configure(alpha, beta);
> This can be accomplished by adding an overload to Configure that accepts an params IAppender[]:
>  IBasicRepositoryConfigurator.Configure(params IAppender[] appenders)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.