From 7f6311b8884b438a7f442b015a4c607791a53537 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Thu, 6 Jan 2022 16:42:39 +0100 Subject: [PATCH] fix compilation issue --- MainWindow.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index 29713b4..1ce5eb6 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -167,10 +167,10 @@ namespace EliteBGS { string report = discord.GenerateDiscordLog(Report); DiscordLog.Text = report; - } catch (Exception e) { + } catch (Exception exception) { Log("Something went terribly wrong while generating the Discord log."); Log("Please send this to CMDR Hekateh:"); - Log(e.ToString()); + Log(exception.ToString()); } }