0
jjlbj created
How to configure ABP for create one log file per day.
ABP Framework version: v4.2.2 UI type: MVC **DB provider: **EF Core Tiered (MVC) or Identity Server Separated (Angular): no Exception message and stack trace: Steps to reproduce the issue:"
3 Answer(s)
-
0
We're using
Serilog.Sinks.Async
in templates.Update:
Log.Logger = new LoggerConfiguration() .WriteTo.Async(c => c.File("Logs/logs.txt"))
to
Log.Logger = new LoggerConfiguration() .WriteTo.Async(c => c.File("Logs/logs.txt", rollingInterval:RollingInterval.Day))
Or you can directly use Serilog File Sink
-
0
Hi @jjlbj
It's not related with ABP. You can do it configuring Serilog like below: https://stackoverflow.com/a/28334074/7200126
-
0
Great !!! Works fine. Thanks !!!