Skip to content

Commit 65ceeae

Browse files
fixed string formatting in log critical call
1 parent 2e919e8 commit 65ceeae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JsonRpc/InputHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ private void HandleRequest(string request)
197197
}
198198
catch (Exception e)
199199
{
200-
_logger.LogCritical(Events.UnhandledNotification, e, "Unhandled exception executing notification {Method}@{Id}", item.Notification.Method);
200+
_logger.LogCritical(Events.UnhandledNotification, e, "Unhandled exception executing notification {Method}", item.Notification.Method);
201201
// TODO: Should we rethrow or swallow?
202202
// If an exception happens... the whole system could be in a bad state, hence this throwing currently.
203203
throw;

0 commit comments

Comments
 (0)