We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1824ba commit 987e094Copy full SHA for 987e094
Src/StackifyLib.log4net/StackifyAppender.cs
@@ -234,11 +234,11 @@ internal LogMsg Translate(LoggingEvent loggingEvent)
234
//try to serialize the messageObject since we know its not a string
235
msg.data = StackifyLib.Utils.HelperFunctions.SerializeDebugData(messageObject, false, diags);
236
msg.Msg = loggingEvent.RenderedMessage;
237
+ }
238
- if (error != null)
239
- {
240
- msg.Msg += "\r\n" + error.ToString();
241
- }
+ if (error != null)
+ {
+ msg.Msg += "\r\n" + error.ToString();
242
}
243
244
if (!string.IsNullOrWhiteSpace(errorAdditionalMessage) && error != null)
0 commit comments