diff --git a/PARR.EsppOrderLoaderWorker/appsettings.json b/PARR.EsppOrderLoaderWorker/appsettings.json index 0a507846..f476e425 100644 --- a/PARR.EsppOrderLoaderWorker/appsettings.json +++ b/PARR.EsppOrderLoaderWorker/appsettings.json @@ -11,11 +11,11 @@ }, "Serilog": { "MinimumLevel": { - "Default": "Debug", - "Override": { - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Debug" - } + "Default": "Information", + "Override": { + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } }, "WriteTo": [ { diff --git a/PARR.EsppOrderManagerWorker/appsettings.json b/PARR.EsppOrderManagerWorker/appsettings.json index adabc829..332181ac 100644 --- a/PARR.EsppOrderManagerWorker/appsettings.json +++ b/PARR.EsppOrderManagerWorker/appsettings.json @@ -11,11 +11,11 @@ }, "Serilog": { "MinimumLevel": { - "Default": "Debug", - "Override": { - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Debug" - } + "Default": "Information", + "Override": { + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } }, "WriteTo": [ { diff --git a/PARR.EsppScheduleSync/ScheduleSyncher.cs b/PARR.EsppScheduleSync/ScheduleSyncher.cs index 3b8bf0b1..dc37b487 100644 --- a/PARR.EsppScheduleSync/ScheduleSyncher.cs +++ b/PARR.EsppScheduleSync/ScheduleSyncher.cs @@ -95,7 +95,7 @@ namespace PARR.EsppScheduleSync var esppObjectFromDb = new EsppObjectSchedule { - TemplateName = template.Name, + TemplateName = template.Name.ToUpper(), Code = template.ScheduleEsppId ?? "", ScheduleName = template.Name, IsActive = template.IsActiveSchedule, @@ -204,7 +204,7 @@ namespace PARR.EsppScheduleSync return null; } - var templateName = splittedContent[6]; + var templateName = splittedContent[6].ToUpper(); var scheduleName = splittedContent[2]; if (!IsValidName(templateName) || !IsValidName(scheduleName)) diff --git a/PARR.EsppScheduleSyncWorker/appsettings.json b/PARR.EsppScheduleSyncWorker/appsettings.json index bd835bb8..2a15a19d 100644 --- a/PARR.EsppScheduleSyncWorker/appsettings.json +++ b/PARR.EsppScheduleSyncWorker/appsettings.json @@ -11,11 +11,11 @@ }, "Serilog": { "MinimumLevel": { - "Default": "Debug", - "Override": { - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Debug" - } + "Default": "Information", + "Override": { + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } }, "WriteTo": [ { diff --git a/PARR.EsppTemplateSync/TemplateMQSyncer.cs b/PARR.EsppTemplateSync/TemplateMQSyncer.cs index 2d327b14..494b5acd 100644 --- a/PARR.EsppTemplateSync/TemplateMQSyncer.cs +++ b/PARR.EsppTemplateSync/TemplateMQSyncer.cs @@ -84,7 +84,7 @@ namespace PARR.EsppTemplateSync { var templateFromDb = new EsppObjectTemplate { - TemplateName = template.Name, + TemplateName = template.Name.ToUpper(), IsActive = template.IsActiveTemplate, //WorkGroup = template.Host!.WorkGroup!, WorkGroup = template.Unit!.BaseFields!.WorkGroup!, @@ -155,7 +155,7 @@ namespace PARR.EsppTemplateSync var templateFromEspp = new EsppObjectTemplate { - TemplateName = templateName, + TemplateName = templateName.ToUpper(), IsActive = isActive, WorkGroup = workGroup, ShortDescription = shortDescription, diff --git a/PARR.EsppTemplateSyncWorker/appsettings.json b/PARR.EsppTemplateSyncWorker/appsettings.json index 6d56933d..2964fd35 100644 --- a/PARR.EsppTemplateSyncWorker/appsettings.json +++ b/PARR.EsppTemplateSyncWorker/appsettings.json @@ -11,11 +11,11 @@ }, "Serilog": { "MinimumLevel": { - "Default": "Debug", - "Override": { - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Debug" - } + "Default": "Information", + "Override": { + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } }, "WriteTo": [ { diff --git a/PARR.GeneratorTemplatesWorker/appsettings.json b/PARR.GeneratorTemplatesWorker/appsettings.json index 4b0ea08d..cd382c1a 100644 --- a/PARR.GeneratorTemplatesWorker/appsettings.json +++ b/PARR.GeneratorTemplatesWorker/appsettings.json @@ -11,11 +11,11 @@ }, "Serilog": { "MinimumLevel": { - "Default": "Debug", - "Override": { - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Debug" - } + "Default": "Information", + "Override": { + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } }, "WriteTo": [ { diff --git a/PARR.JobAutoControlWorker/appsettings.json b/PARR.JobAutoControlWorker/appsettings.json index 212d8b24..8c528967 100644 --- a/PARR.JobAutoControlWorker/appsettings.json +++ b/PARR.JobAutoControlWorker/appsettings.json @@ -11,11 +11,11 @@ }, "Serilog": { "MinimumLevel": { - "Default": "Debug", - "Override": { - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Debug" - } + "Default": "Information", + "Override": { + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } }, "WriteTo": [ { diff --git a/PARR.MasterWorker/appsettings.json b/PARR.MasterWorker/appsettings.json index b62a5755..5a27f981 100644 --- a/PARR.MasterWorker/appsettings.json +++ b/PARR.MasterWorker/appsettings.json @@ -11,11 +11,11 @@ }, "Serilog": { "MinimumLevel": { - "Default": "Debug", - "Override": { - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Debug" - } + "Default": "Information", + "Override": { + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } }, "WriteTo": [ { diff --git a/PARR.MockData/appsettings.json b/PARR.MockData/appsettings.json index cf6ae0d0..d87c864c 100644 --- a/PARR.MockData/appsettings.json +++ b/PARR.MockData/appsettings.json @@ -11,11 +11,11 @@ }, "Serilog": { "MinimumLevel": { - "Default": "Debug", - "Override": { - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Debug" - } + "Default": "Information", + "Override": { + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } }, "WriteTo": [ { diff --git a/PARR.NextRunWorker/appsettings.json b/PARR.NextRunWorker/appsettings.json index 3a134053..4bdb0a54 100644 --- a/PARR.NextRunWorker/appsettings.json +++ b/PARR.NextRunWorker/appsettings.json @@ -11,11 +11,11 @@ }, "Serilog": { "MinimumLevel": { - "Default": "Debug", - "Override": { - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Debug" - } + "Default": "Information", + "Override": { + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } }, "WriteTo": [ { diff --git a/PARR.TemplateActivatorWorker/appsettings.json b/PARR.TemplateActivatorWorker/appsettings.json index f9b27786..374e1323 100644 --- a/PARR.TemplateActivatorWorker/appsettings.json +++ b/PARR.TemplateActivatorWorker/appsettings.json @@ -11,11 +11,11 @@ }, "Serilog": { "MinimumLevel": { - "Default": "Debug", - "Override": { - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Debug" - } + "Default": "Information", + "Override": { + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } }, "WriteTo": [ { diff --git a/PARR.TemplateDistributorWorker/appsettings.json b/PARR.TemplateDistributorWorker/appsettings.json index 8426e3c5..f23cf39f 100644 --- a/PARR.TemplateDistributorWorker/appsettings.json +++ b/PARR.TemplateDistributorWorker/appsettings.json @@ -11,11 +11,11 @@ }, "Serilog": { "MinimumLevel": { - "Default": "Debug", - "Override": { - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Debug" - } + "Default": "Information", + "Override": { + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } }, "WriteTo": [ { diff --git a/PARR.TemplateGeneratorWorker/TemplateGenerator.cs b/PARR.TemplateGeneratorWorker/TemplateGenerator.cs index 570d76e7..abe5249b 100644 --- a/PARR.TemplateGeneratorWorker/TemplateGenerator.cs +++ b/PARR.TemplateGeneratorWorker/TemplateGenerator.cs @@ -95,7 +95,7 @@ namespace PARR.TemplateGeneratorWorker var template = new Template { Id = Guid.NewGuid(), - Name = templateName, + Name = templateName.ToUpper(), UnitId = query.UnitId, JobId = query.JobId, IsActiveTemplate = query.IsActiveTemplate ?? false, diff --git a/PARR.TemplateGeneratorWorker/appsettings.json b/PARR.TemplateGeneratorWorker/appsettings.json index a9a40ca8..5223963b 100644 --- a/PARR.TemplateGeneratorWorker/appsettings.json +++ b/PARR.TemplateGeneratorWorker/appsettings.json @@ -11,11 +11,11 @@ }, "Serilog": { "MinimumLevel": { - "Default": "Debug", - "Override": { - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Debug" - } + "Default": "Information", + "Override": { + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } }, "WriteTo": [ { diff --git a/PARR.Test/appsettings.json b/PARR.Test/appsettings.json index b0c9fb4d..476427d9 100644 --- a/PARR.Test/appsettings.json +++ b/PARR.Test/appsettings.json @@ -10,11 +10,11 @@ }, "Serilog": { "MinimumLevel": { - "Default": "Debug", - "Override": { - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Debug" - } + "Default": "Information", + "Override": { + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } }, "WriteTo": [ {