通过学习,我有以下几点
主要

 var configuration = new ConfigurationBuilder()
            .AddJsonFile("appsettings.json")
            .Build();

        var logger = new LoggerConfiguration()
            .ReadFrom.Configuration(configuration) // the error happens here
            .CreateLogger();

        logger.Information("Hello, world!");

在appsetttings.json中(使用不同的连接字符串)
"Serilog": {
    "Using": [ "Serilog.Sinks.Console", "Serilog.Sinks.AzureTableStorage" ],

    "MinimumLevel": "Debug",
    "WriteTo": [
      { "Name": "Console" },
      {
        "Name": "File",
        "Args": { "path": "%TEMP%\\Logs\\serilog-configuration-sample.txt" }
      },
      {
        "Name": "AzureTableStorage",
        "Args": {
          "storageTableName": "mystoragetable",
          "connectionString": "myconnectionstring"
                }
      }
    ],
    "Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ],
    "Destructure": [
      {
        "Name": "With",
        "Args": { "policy": "Sample.CustomPolicy, Sample" }
      },
      {
        "Name": "ToMaximumDepth",
        "Args": { "maximumDestructuringDepth": 4 }
      },
      {
        "Name": "ToMaximumStringLength",
        "Args": { "maximumStringLength": 100 }
      },
      {
        "Name": "ToMaximumCollectionCount",
        "Args": { "maximumCollectionCount": 10 }
      }
    ],
    "Properties": {
      "Application": "Sample"
    }
  }

我在调试输出中看到,但是没有数据被记录到存储表中。
引发异常:system.private.corelib.dll中的“system.invalidcastexception”
System.Private.CoreLib.dll中发生“System.InvalidCastException”类型的未处理异常
从“system.string”到“serilog.core.idestructuringpolicy”的转换无效。
[更新]
如果我按照github中的readme.md使用一个非常简单的配置,就会得到同样的错误。
[更新]
我从kennyzx链接复制了代码。错误已更改为
System.InvalidCastException
  HResult=0x80004002
  Message=Invalid cast from 'System.String' to 'Serilog.Core.ILogEventFilter'.
  Source=System.Private.CoreLib

我决定尝试将serilog设置配置示例项目升级到.netcore2.1,因此要求Serilog.Sinks.AzureTableStorage
几个小时后,我得出结论,serilog设置配置s与dotnetcore 2.1不兼容。

最佳答案

我试图建立一个名为UseSerilog的新.net core 2.1控制台项目,我可以重现这个问题。
从配置中删除DestructureFilter部分后,应用程序开始工作。
然后我检查了Serilog.Settings.Configuration包的源代码,找到了this commit,我得出结论,您需要编写一些代码才能像这样工作。
对于下面的配置,您需要在实现CustomPolicy的“sample”命名空间中编写一个IDestructuringPolicy类。

{
    "Name": "With",
    "Args": { "policy": "Sample.CustomPolicy, Sample" }
}

如果您删除此项,并按如下方式保留Destructure,则它将正常工作。
"Destructure": [
  {
    "Name": "ToMaximumDepth",
    "Args": { "maximumDestructuringDepth": 3 }
  },
  {
    "Name": "ToMaximumStringLength",
    "Args": { "maximumStringLength": 10 }
  },
  {
    "Name": "ToMaximumCollectionCount",
    "Args": { "maximumCollectionCount": 5 }
  }
]

希望这个发现对你有帮助。

关于c# - 从'System.String'到'Serilog.Core.IDestructuringPolicy'的无效转换,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53112340/

10-14 22:54