Commit a84a482f authored by Philip Makedonski's avatar Philip Makedonski
Browse files

* split status message

parent 8cc71032
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -31,6 +31,7 @@ public class Analyzer implements Callable<TTCN3Output> {
		final TTCN3Output output = new TTCN3Output(this.resource);
		final Stopwatch stopwatch = Stopwatch.createUnstarted();

		System.out.println("Analyzing  file: " + this.resource.getURI().devicePath().replaceFirst("///", ""));
		stopwatch.start();

		// validate the resource
@@ -62,8 +63,8 @@ public class Analyzer implements Callable<TTCN3Output> {

		stopwatch.stop();

		System.out.println("Analyzing  file: " + this.resource.getURI().devicePath().replaceFirst("///", "") + '\n'
				+ "       ...done in " + stopwatch.elapsed(TimeUnit.MILLISECONDS) + " ms ("
		System.out.println(
				"       ...done in " + stopwatch.elapsed(TimeUnit.MILLISECONDS) + " ms ("
				+ MiscTools.secondsToString(stopwatch.elapsed(TimeUnit.SECONDS)) + " minutes).");

		return output;