RollingMode.Dateを使用して日付でログを記録したい。ただし、デフォルトの間隔は1分です。ソースを調べたところ、そのクラスが列挙型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
}
RollingFileAppenderオブジェクトにRollPointを指定するにはどうすればよいですか?
ありがとう!