diff --git a/code/Executable/DependencyInjection/LoggingDI.cs b/code/Executable/DependencyInjection/LoggingDI.cs index 6feea8fd..6376d1c3 100644 --- a/code/Executable/DependencyInjection/LoggingDI.cs +++ b/code/Executable/DependencyInjection/LoggingDI.cs @@ -85,7 +85,7 @@ public static class LoggingDI logConfig .MinimumLevel.Override("MassTransit", LogEventLevel.Warning) .MinimumLevel.Override("Microsoft.Hosting.Lifetime", LogEventLevel.Information) - .MinimumLevel.Override("Microsoft.Extensions.Http", LogEventLevel.Warning) + .MinimumLevel.Override("Microsoft", LogEventLevel.Warning) .MinimumLevel.Override("Quartz", LogEventLevel.Warning) .MinimumLevel.Override("System.Net.Http.HttpClient", LogEventLevel.Error) .Enrich.WithProperty("ApplicationName", "cleanuperr"); diff --git a/code/Executable/config/settings/general.json b/code/Executable/config/settings/general.json index b46787bc..fa91ae04 100644 --- a/code/Executable/config/settings/general.json +++ b/code/Executable/config/settings/general.json @@ -5,5 +5,5 @@ "certificate_validation": "Enabled", "search_enabled": true, "search_delay": 30, - "log_level": "Information" + "log_level": "Verbose" } \ No newline at end of file diff --git a/code/UI/src/app/logging/logs-viewer/logs-viewer.component.scss b/code/UI/src/app/logging/logs-viewer/logs-viewer.component.scss index 9a6be3ad..94e766ca 100644 --- a/code/UI/src/app/logging/logs-viewer/logs-viewer.component.scss +++ b/code/UI/src/app/logging/logs-viewer/logs-viewer.component.scss @@ -224,7 +224,7 @@ } .log-level { - min-width: 80px; + width: 5rem; @media (max-width: 768px) { margin-bottom: 0.5rem; @@ -233,12 +233,10 @@ .log-category { background-color: var(--surface-hover); - padding: 0.25rem 0.5rem; border-radius: 4px; font-size: 0.85rem; color: var(--text-color-secondary); - min-width: 100px; - max-width: 150px; + width: 5rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; diff --git a/code/UI/src/app/logging/logs-viewer/logs-viewer.component.ts b/code/UI/src/app/logging/logs-viewer/logs-viewer.component.ts index 41573c17..02550c78 100644 --- a/code/UI/src/app/logging/logs-viewer/logs-viewer.component.ts +++ b/code/UI/src/app/logging/logs-viewer/logs-viewer.component.ts @@ -187,6 +187,7 @@ export class LogsViewerComponent implements OnInit, OnDestroy { return 'info'; case 'debug': case 'trace': + case 'verbose': return 'success'; default: return 'info'; @@ -224,6 +225,7 @@ export class LogsViewerComponent implements OnInit, OnDestroy { case 'debug': return 'level-debug'; case 'trace': + case 'verbose': return 'level-trace'; default: return 'level-default';