I want to use Serilog for logging because I worked with it and it fits my needs.
The difference in this case is that I need to log different modules and I would like each module to be logged in a different folder and even maybe in a different sink.
I am not talking about using several sinks, but I talk about doing something like this:
Serilog.Log(LogInstance1,"Log for module 1") // Logs in a rolling text file in folder X 10 files of 1MB each
Serilog.Log(LogInstance2,"Log for module 2") // Logs i na text file that doesn't delete old entries
Does anyone know if this is possible to achieve with Serilog?