net core 2.0 Serilog RollingFile文件格式

时间:2018-07-06 19:11:14

标签: file logging serilog .net-core-2.0

我正在做一个Net Core 2.0类申请。从类文件中读取Api服务,我需要记录输入参数和输出参数。

我正在使用Serilog

我用一种将参数记录在txt文件中的方法定义了static Class

public static void LoggingService()
        {
           var log = new LoggerConfiguration().WriteTo.RollingFile("C:/AAA", shared: true).CreateLogger();
            log.Information("this is a log test ");
        }

它工作正常。 它用这一行记录一个文件

2018-07-06 15:15:35.368 -03:00 [Information] this is a log test 

我需要设置文本行的格式...我只需要

this is a log test 1

是否可以格式化输出字符串?

谢谢

0 个答案:

没有答案