xxxxプログラマのメモ

先人に感謝と敬意:自分の困ったこと調べたことのメモ

Worker Service #.Net Core #Windows Service

wakeupandcode.com

levelup.gitconnected.com

docs.microsoft.com

wakeupandcode.com

リンクに記載の通り、WorkerServiceのログは以下のようにしないとイベントログに登録されません。
appsettings.json

{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Warning",
      "Microsoft.Hosting.Lifetime": "Information"
    },
    "EventLog": {
      "LogLevel": {
        "Default": "Information",
        "Microsoft.Hosting.Lifetime": "Information"
      }
    }
  }
}

hiromatsu.hatenablog.com

Thanks!