From afc764aa41286e0756f5d6acb006456f5bb8a063 Mon Sep 17 00:00:00 2001 From: RKrom Date: Tue, 17 Aug 2010 21:09:53 +0000 Subject: [PATCH] Enhanced ini framework with enums and lists git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@810 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4 --- Greenshot/Forms/MainForm.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Greenshot/Forms/MainForm.cs b/Greenshot/Forms/MainForm.cs index 9b939a211..20b84403f 100644 --- a/Greenshot/Forms/MainForm.cs +++ b/Greenshot/Forms/MainForm.cs @@ -85,7 +85,13 @@ namespace Greenshot { // Read configuration coreConfiguration = IniConfig.GetInstance().GetSection(); IniConfig.GetInstance().Save(); - LOG.Info(coreConfiguration.IsFirstLaunch); + LOG.Info("Firstlaunch: " + coreConfiguration.IsFirstLaunch); + LOG.Info("Destinations:"); + if (coreConfiguration.OutputDestinations != null) { + foreach(Destinations destination in coreConfiguration.OutputDestinations) { + LOG.Info(destination); + } + } try { // Fix for Bug 2495900, Multi-user Environment