It seems we can't write an "audit" (i.e. "safe") log to a rolling file.
You can do:
config.WriteTo.File("audit.txt", rollingInterval: rollingInterval.Day, retainedFileCountLimit: 7)
But those options are not exposed in
config.AuditTo.File("audit.txt", ???)
which has much more limited options.
Could we have the same options in both situations?
It seems we can't write an "audit" (i.e. "safe") log to a rolling file.
You can do:
config.WriteTo.File("audit.txt", rollingInterval: rollingInterval.Day, retainedFileCountLimit: 7)But those options are not exposed in
config.AuditTo.File("audit.txt", ???)which has much more limited options.
Could we have the same options in both situations?