我用的是abp框架,找不到日志文件在哪里。
可以在 Error Action 中通过下面的代码获取错误信息
public async Task<IActionResult> Error(string errorId)
{
var message = await _interaction.GetErrorContextAsync(errorId);
//...
}
看一下配置文件,有配置日记目录
appsettings.json里没有
看到目录了,但是不记录怎么办
https://identityserver4.readthedocs.io/en/latest/topics/logging.html
https://docs.microsoft.com/en-us/aspnet/core/fundamentals/logging/?view=aspnetcore-3.1
你看下使用的是哪个provider,你说的应该是文件系统,看下代码和配置文件
用的是自带的serilog,但是不记录,目录也设置了
@bindolphin: https://github.com/serilog/serilog/wiki/Configuration-Basics
里面介绍了.net framework的配置: https://github.com/serilog/serilog-settings-appsettings
及.net core的配置:https://github.com/serilog/serilog-settings-configuration
你新建一个控制台测试项目看看