如何指定日期间隔?

发布于 2024-12-14 22:38:37 字数 596 浏览 0 评论 0原文

我想使用 RollingMode.Date 按日期记录。但默认间隔为一分钟。我查看了源代码,发现该类已保护枚举 RollPoint

/// <summary>
/// The code assumes that the following 'time' constants are in a increasing sequence.
/// </summary>
/// <remarks>
/// <para>
/// The code assumes that the following 'time' constants are in a increasing sequence.
/// </para>
/// </remarks>
protected enum RollPoint
{
    InvalidRollPoint = -1,
    TopOfMinute,
    TopOfHour,
    HalfDay,
    TopOfDay,
    TopOfWeek,
    TopOfMonth
}

如何将 RollPoint 指定为 RollingFileAppender 对象?

谢谢!

I want to use RollingMode.Date to log by date. But default interval is one minute. I looked into source and saw, that class has protected enum RollPoint

/// <summary>
/// The code assumes that the following 'time' constants are in a increasing sequence.
/// </summary>
/// <remarks>
/// <para>
/// The code assumes that the following 'time' constants are in a increasing sequence.
/// </para>
/// </remarks>
protected enum RollPoint
{
    InvalidRollPoint = -1,
    TopOfMinute,
    TopOfHour,
    HalfDay,
    TopOfDay,
    TopOfWeek,
    TopOfMonth
}

How to specify RollPoint to RollingFileAppender object?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半衾梦 2024-12-21 22:38:37

您可以使用日志配置的datePattern属性。

要更改滚动周期,请调整 DatePattern 值。例如,日期模式“yyyyMMdd”将每天滚动。请参阅 System.Globalization.DateTimeFormatInfo 以获取可用模式的列表。

它缩小范围以添加

<datePattern value="yyyyMMdd-HHmm" />

到您的附加程序配置。更多信息请参见此处

You can use datePattern property of log configuration.

To change the rolling period adjust the DatePattern value. For example, a date pattern of "yyyyMMdd" will roll every day. See System.Globalization.DateTimeFormatInfo for a list of available patterns.

It narrows down to adding

<datePattern value="yyyyMMdd-HHmm" />

to your appender configuration. More information here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文