log.info("Collecting log files");
// validate
for (String path : request.getPaths()) {
if (!new File(path).isDirectory()) {
throw new CollectLogfileException("The dir " + path + " is no directory");
}
}
// collect
List<LogFiles> logFilesList = new LinkedList<>();