public void ElmahLogFactoryTest()
		{
			ElmahLogFactory factory = new ElmahLogFactory(new Log4NetFactory(), new HttpApplication());
			ILog log = factory.GetLogger(GetType());
			Assert.IsNotNull(log);
			Assert.IsNotNull(log as ElmahInterceptingLogger);
		}
		public ElmahVerboserLoggerFactory(ElmahLogFactory decoree)
		{
			_decoree = decoree;
		}