diff --git a/Source/Client/Desyncs/LogGenerator.cs b/Source/Client/Desyncs/LogGenerator.cs index 4a615e92..ff441c0a 100644 --- a/Source/Client/Desyncs/LogGenerator.cs +++ b/Source/Client/Desyncs/LogGenerator.cs @@ -35,12 +35,10 @@ internal static string PrepareLogData() return logSection; } - catch + catch(Exception e) { - // ignored + return $"Failed to generate log data: {e}"; } - - return null; } private static string NormalizeLineEndings(string log)