From cc44c64dc454fe34bb0f34e1bfd800f0519c7641 Mon Sep 17 00:00:00 2001 From: luosheng Date: Thu, 28 Dec 2023 13:27:03 +0800 Subject: [PATCH] Fix --- .../ModbusTcpToRtu/appsettings.Development.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/Samples/ModbusTcpToRtu/appsettings.Development.json b/Samples/ModbusTcpToRtu/appsettings.Development.json index b2dcdb6..84216e9 100644 --- a/Samples/ModbusTcpToRtu/appsettings.Development.json +++ b/Samples/ModbusTcpToRtu/appsettings.Development.json @@ -1,8 +1,21 @@ { + "Serilog": { + "MinimumLevel": { + "Default": "Debug", + "Override": { + "Microsoft": "Debug", + "Microsoft.Hosting.Lifetime": "Debug" + } + } + }, "Logging": { "LogLevel": { - "Default": "Information", - "Microsoft.Hosting.Lifetime": "Information" + "Default": "Debug", + "Microsoft": "Debug", + "Microsoft.Hosting.Lifetime": "Debug" } + }, + "Quartz": { + "LogLevel": "Debug" } }