Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Services / Logging / Castle.Services.Logging.log4netIntegration / ExtendedLog4netFactory.cs
blobc26e378385c4bf9d36d0bfd28eed68516ce2e099
1 // Copyright 2004-2008 Castle Project - http://www.castleproject.org/
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle.Services.Logging.Log4netIntegration
17 using System;
18 using System.IO;
19 using Castle.Core.Logging;
20 using Castle.Core.Logging.Factories;
21 using log4net;
22 using log4net.Config;
24 public class ExtendedLog4netFactory : AbstractExtendedLoggerFactory
26 public ExtendedLog4netFactory() : this("log4net.config")
30 public ExtendedLog4netFactory(String configFile)
32 FileInfo file = GetConfigFile(configFile);
33 XmlConfigurator.ConfigureAndWatch(file);
36 /// <summary>
37 /// Creates a new extended logger.
38 /// </summary>
39 public override IExtendedLogger Create(string name)
41 ILog log = LogManager.GetLogger(name);
42 return new ExtendedLog4netLogger(log, this);
45 /// <summary>
46 /// Creates a new extended logger.
47 /// </summary>
48 public override IExtendedLogger Create(string name, LoggerLevel level)
50 throw new NotSupportedException("Logger levels cannot be set at runtime. Please review your configuration file.");