fix compilation issue

This commit is contained in:
Florian Stinglmayr 2022-01-06 16:42:39 +01:00
parent 9db0b5d9cc
commit 7f6311b888

View File

@ -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());
}
}