logic: add logging for jars used by maven project setup

This commit is contained in:
malte_langkabel
2017-06-28 11:55:23 +02:00
parent d60a9c82d5
commit 8370caf705
2 changed files with 28 additions and 19 deletions
+3 -2
View File
@@ -25,12 +25,12 @@ namespace
}
tagString += tags[i];
}
LOG_INFO("Fetching directories for \"" + tagString + "\".");
LOG_INFO("Fetching source directories in \"" + tagString + "\".");
std::vector<std::string> fetchedDirectories = utility::getValuesOfAllXmlElementsOnPath(
xmlAccess, tags
);
LOG_INFO("Found " + std::to_string(fetchedDirectories.size()) + " directories.");
LOG_INFO("Found " + std::to_string(fetchedDirectories.size()) + " source directories.");
for (const std::string& fetchedDirectory: fetchedDirectories)
{
@@ -40,6 +40,7 @@ namespace
path = path.concat(toAppend);
}
pathList.push_back(path);
LOG_INFO("Found directory \"" + path.str() + "\".");
}
}