企业库Fluent API和滚动日志文件未滚动

时间:2011-06-30 14:49:19

标签: enterprise-library enterprise-library-5

我正在使用Fluent API来处理使用EntLib进行日志记录的各种配置选项。

我正在代码中手动构建loggingConfiguration部分。除了RollingFlatFileTraceListener实际上没有滚动文件之外,它似乎工作得很好。它将遵守大小限制并适当地限制它写入文件的数据量,但它实际上并不会创建新文件并继续记录日志。

我已经使用示例应用和app.config对其进行了测试,它似乎正常运行。所以我猜我错过了一些东西,虽然看起来需要的每个配置选项都在那里。

以下是代码的基础知识(使用硬编码值显示配置似乎不起作用):         //为Fluent API创建配置构建器                 var configBuilder = new ConfigurationSourceBuilder();

            //Start building the logging config section                 
            var logginConfigurationSection = new LoggingSettings("loggingConfiguration", true, "General");                 
            logginConfigurationSection.RevertImpersonation = false;
            var _rollingFileListener = new RollingFlatFileTraceListenerData("Rolling Flat File Trace Listener", "C:\\tracelog.log", "----------------------", "",
                            10, "MM/dd/yyyy", RollFileExistsBehavior.Increment,
                            RollInterval.Day, TraceOptions.None,
                            "Text Formatter", SourceLevels.All);


            _rollingFileListener.MaxArchivedFiles = 2;

            //Add trace listener to current config
            logginConfigurationSection.TraceListeners.Add(_rollingFileListener);

            //Configure the category source section of config for flat file
            var _rollingFileCategorySource = new TraceSourceData("General", SourceLevels.All);

            //Must be named exactly the same as the flat file trace listener above.
            _rollingFileCategorySource.TraceListeners.Add(new TraceListenerReferenceData("Rolling Flat File Trace Listener"));

            //Add category source information to current config
            logginConfigurationSection.TraceSources.Add(_rollingFileCategorySource);          

            //Add the loggingConfiguration section to the config.
            configBuilder.AddSection("loggingConfiguration", logginConfigurationSection);

            //Required code to update the EntLib Configuration with settings set above.
            var configSource = new DictionaryConfigurationSource();
            configBuilder.UpdateConfigurationWithReplace(configSource);

            //Set the Enterprise Library Container for the inner workings of EntLib to use when logging
            EnterpriseLibraryContainer.Current = EnterpriseLibraryContainer.CreateDefaultContainer(configSource);

任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:4)

您的时间戳模式错误。它应该是yyy-mm-dd而不是MM / dd / yyyy。

。不支持“/”字符。

此外,您可以更轻松地使用fluent configuration interface来实现目标。方法如下:

    ConfigurationSourceBuilder formatBuilder = new ConfigurationSourceBuilder();

    ConfigurationSourceBuilder builder = new ConfigurationSourceBuilder();
    builder.ConfigureLogging().LogToCategoryNamed("General").
        SendTo.
        RollingFile("Rolling Flat File Trace Listener")
        .CleanUpArchivedFilesWhenMoreThan(2).WhenRollFileExists(RollFileExistsBehavior.Increment)
        .WithTraceOptions(TraceOptions.None)
        .RollEvery(RollInterval.Minute)
        .RollAfterSize(10)
        .UseTimeStampPattern("yyyy-MM-dd")
        .ToFile("C:\\logs\\Trace.log")
        .FormatWith(new FormatterBuilder().TextFormatterNamed("textFormatter"));

    var configSource = new DictionaryConfigurationSource(); 
    builder.UpdateConfigurationWithReplace(configSource); 
    EnterpriseLibraryContainer.Current = EnterpriseLibraryContainer.CreateDefaultContainer(configSource);
    var writer = EnterpriseLibraryContainer.Current.GetInstance<LogWriter>();

    DateTime stopWritingTime = DateTime.Now.AddMinutes(10);
    while (DateTime.Now < stopWritingTime)
    {
        writer.Write("test", "General");
    }