A Serilog sink that write events to rolling text files, where the path is determined on date and time.
{date:format=string:isUtc=boolean:culture=string}
c:\\logs\\{date:format=yyyy}\\{date:format=MM}\\{date:format=dd}\\file-{date:format=HH}.log
Date format. Can be any argument accepted by DateTime.ToString(format). Formats that contains colons needs to be escaped with a backslash.
Indicates whether to output the DateTime as UTC instead if local time
The culture used for rendering.