diff --git a/Source/Client/Desyncs/LogGenerator.cs b/Source/Client/Desyncs/LogGenerator.cs index 4a615e92..192bb311 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: \n{e}"; } - - return null; } private static string NormalizeLineEndings(string log)