Skip to content

Commit d1c369a

Browse files
committed
dotnet format
1 parent c4d4389 commit d1c369a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Elastic.Markdown/Diagnostics/DiagnosticsChannel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@ public void EmitError(string file, string message, Exception? e = null)
148148
Severity = Severity.Error,
149149
File = file,
150150
Message = message
151-
+ (e != null ? Environment.NewLine + e : string.Empty)
152-
+ (e?.InnerException != null ? Environment.NewLine + e.InnerException : string.Empty),
151+
+ (e != null ? Environment.NewLine + e : string.Empty)
152+
+ (e?.InnerException != null ? Environment.NewLine + e.InnerException : string.Empty),
153153

154154
};
155155
Channel.Write(d);

0 commit comments

Comments
 (0)