From 9b1c766c1990b0453abd5cfefbfafc7dfcf563ca Mon Sep 17 00:00:00 2001 From: Christian Schulz <32000301+Christian-Schulz@users.noreply.github.com> Date: Wed, 30 Oct 2019 12:43:58 +0100 Subject: [PATCH] Fix msg for FormatException (#150) --- src/Greenshot.Addons/Components/ExportNotification.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Greenshot.Addons/Components/ExportNotification.cs b/src/Greenshot.Addons/Components/ExportNotification.cs index ea121ecdd..f89d48065 100644 --- a/src/Greenshot.Addons/Components/ExportNotification.cs +++ b/src/Greenshot.Addons/Components/ExportNotification.cs @@ -65,7 +65,7 @@ namespace Greenshot.Addons.Components { if (exportInformation == null || !_coreConfiguration.ShowTrayNotification) { - Log.Info().WriteLine("No notification due to ShowTrayNotification = {0} - or export made = {1}", _coreConfiguration.ShowTrayNotification); + Log.Info().WriteLine("No notification due to ShowTrayNotification = {0} - or exportInformation is null", _coreConfiguration.ShowTrayNotification); return; }