public void TestCreateLoggerReflectionError()
        {
            // load the config
            IConfiguration config =
                new ConfigurationManager().GetConfiguration("TopCoder.LoggingWrapper.LogManager");

            config.RemoveAttribute("logger_name");

            LogManager.CreateLogger(config);
        }
        public void TestCreateLoggerNoLoggerClass()
        {
            // load the config
            IConfiguration config =
                new ConfigurationManager().GetConfiguration("TopCoder.LoggingWrapper.LogManager");

            config.RemoveAttribute("logger_class");

            LogManager.CreateLogger(config);
        }