Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在没有任何默认模板格式的情况下在 Serilog 日志文件中插入一个简单的换行符。如何才能做到这一点?
我尝试在没有格式化的情况下创建一个额外的记录器,但它似乎无法与多个记录器一起正常工作到同一个文件。
应该很简单
ILogger _logger // SeriLog interface _logger.Information("Simple message", null);
那不行吗?