Open Closed

Create log file one per day #2208


User avatar
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)
  • User Avatar
    0
    gterdem created
    Support Team Senior .NET Developer

    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

  • User Avatar
    0
    enisn created
    Support Team .NET Developer

    Hi @jjlbj

    It's not related with ABP. You can do it configuring Serilog like below: https://stackoverflow.com/a/28334074/7200126

  • User Avatar
    0
    jjlbj created

    Great !!! Works fine. Thanks !!!

Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11