我在哪里可以找到 EventStore 的示例 logconfig.json?

Where can I find a sample logconfig.json for EventStore?

EventStore 已将其日志记录配置移动到名为 logconfig.json 的文件中,但我找不到该文件的示例,因此我被迫根本没有文件,并且使用 EventStore 的默认日志记录配置。

我已经用谷歌搜索过了。我在哪里可以找到 logconfig.json 的样本?

您可以 find one 在 EventStoreDB 存储库中。

这是一个普通的 appconfig.json 风格的文件,只包含 ASP.NET 核心 logging configuration 设置。

这是默认配置:

{
    "Logging": {
        "LogLevel": {
            "Default": "Debug",
            "System": "Warning",
            "Microsoft": "Warning",
            "Grpc": "Fatal"
        }
    }
}

您还可以 see here that if the Serilog section is found in the file, it will be used to configure Serilog, instead of using the hard-coded configuration. The section format should be following the documentation Serilog appsetting 配置提供程序。