Skip to content
Snippets Groups Projects
Commit 424a73c2 authored by Jürgen Walter's avatar Jürgen Walter
Browse files

minor path resolution fix II

parent 68b8ed01
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,7 @@ import java.util.Properties; ...@@ -8,6 +8,7 @@ import java.util.Properties;
import org.apache.log4j.Logger; import org.apache.log4j.Logger;
import kieker.common.configuration.Configuration;
import tools.descartes.dql.connector.kieker.configgenerator.XMLGenerationManager; import tools.descartes.dql.connector.kieker.configgenerator.XMLGenerationManager;
import tools.descartes.dql.connector.kieker.filter.KiekerAnalysisController; import tools.descartes.dql.connector.kieker.filter.KiekerAnalysisController;
import tools.descartes.dql.connector.kieker.structures.Trace; import tools.descartes.dql.connector.kieker.structures.Trace;
...@@ -65,12 +66,6 @@ public class KiekerManager { ...@@ -65,12 +66,6 @@ public class KiekerManager {
log("Valid user config found, start processing..."); log("Valid user config found, start processing...");
Properties prop = KiekerHelper.getProperties(modelLocation); Properties prop = KiekerHelper.getProperties(modelLocation);
this.traceFileOutputPath= (String) prop.get(KiekerHelper.KIEKER_LOG_DIRECTORY); this.traceFileOutputPath= (String) prop.get(KiekerHelper.KIEKER_LOG_DIRECTORY);
traceFileOutputPath = traceFileOutputPath.replace("%20", " "); // fixes
// space
// in
// path
// problem
if (!KiekerHelper.checkTraceFilesExist(traceFileOutputPath)){ if (!KiekerHelper.checkTraceFilesExist(traceFileOutputPath)){
log("No traceFiles found in specified log directory"); log("No traceFiles found in specified log directory");
log("Start monitoring"); log("Start monitoring");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment