diff --git a/Greenshot/Forms/MainForm.cs b/Greenshot/Forms/MainForm.cs index b2f7f0459..bdcef42e1 100644 --- a/Greenshot/Forms/MainForm.cs +++ b/Greenshot/Forms/MainForm.cs @@ -89,7 +89,7 @@ namespace Greenshot { LOG.Info("Firstlaunch: " + coreConfiguration.IsFirstLaunch); LOG.Info("Destinations:"); if (coreConfiguration.OutputDestinations != null) { - foreach(string destination in coreConfiguration.OutputDestinations) { + foreach(Destination destination in coreConfiguration.OutputDestinations) { LOG.Info("\t" + destination); } }