From 08d1ced7b6e9ba78b8fa7a9aff6bac0d483908e6 Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Sun, 18 Dec 2022 15:03:07 -0600 Subject: [PATCH] refactor: Newline after message, but before exception details --- src/Recyclarr.Cli/Logging/LoggerFactory.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Recyclarr.Cli/Logging/LoggerFactory.cs b/src/Recyclarr.Cli/Logging/LoggerFactory.cs index ce67a4fc..ae3aec27 100644 --- a/src/Recyclarr.Cli/Logging/LoggerFactory.cs +++ b/src/Recyclarr.Cli/Logging/LoggerFactory.cs @@ -22,9 +22,8 @@ public class LoggerFactory return $"{{#if {scope} is not null}}{{{scope}}}: {{#end}}" + - "{@m}" + - "{@x}" + - "\n"; + "{@m}\n" + + "{@x}"; } private static ExpressionTemplate GetConsoleTemplate()