Skip to content
Snippets Groups Projects
Commit 8e4faf9e authored by Marco De Marco's avatar Marco De Marco
Browse files

Warning and error path properties info messages added

parent 092e1824
No related branches found
No related tags found
No related merge requests found
......@@ -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"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment