Output raw message on failure

This commit is contained in:
Dan Balasescu
2021-11-28 22:27:59 +09:00
parent 18a0a791fd
commit fc3eb08452

View File

@ -38,7 +38,7 @@ namespace osu.Desktop.LegacyIpc
} }
catch (Exception ex) catch (Exception ex)
{ {
logger.Add("Processing IPC message failed!", exception: ex); logger.Add($"Processing IPC message failed: {msg.Value}", exception: ex);
return null; return null;
} }
}; };