From 8e4faf9effa60774a9b9c56c9459d80aab43df53 Mon Sep 17 00:00:00 2001
From: Marco De Marco <demarco@oats.inaf.it>
Date: Mon, 17 Nov 2014 16:07:13 +0100
Subject: [PATCH] Warning and error path properties info messages added

---
 src/PreProcessor.cpp | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/PreProcessor.cpp b/src/PreProcessor.cpp
index d4c887a..03dd88d 100644
--- a/src/PreProcessor.cpp
+++ b/src/PreProcessor.cpp
@@ -373,9 +373,15 @@ void PreProcessor::get_device_property()
 
 		if(!warningPath.empty())
 			checkIfDirectoryExists(warningPath);
+		else
+			INFO_STREAM << "PreProcessor::get_device_property() WarningPath "
+				<< "property not defined " << endl;
 
 		if(!errorPath.empty())
 			checkIfDirectoryExists(errorPath);
+		else
+			INFO_STREAM << "PreProcessor::get_device_property() ErrorPath "
+				<< "property not defined " << endl;
 
         if(scriptPath.empty())
             throw(invalid_argument("ScriptPath property is empty or not defined"));
-- 
GitLab