aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/automatedtests/util/Log.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/itmill/toolkit/automatedtests/util/Log.java')
-rw-r--r--src/com/itmill/toolkit/automatedtests/util/Log.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/com/itmill/toolkit/automatedtests/util/Log.java b/src/com/itmill/toolkit/automatedtests/util/Log.java
index 43c0efe9df..8d113e0fe5 100644
--- a/src/com/itmill/toolkit/automatedtests/util/Log.java
+++ b/src/com/itmill/toolkit/automatedtests/util/Log.java
@@ -68,10 +68,11 @@ public class Log {
String clazz = st[3].getClassName() + ".java";
key = "(" + clazz + ":" + line + ")" + " " + methodName;
Integer value = (Integer) classMethodCallCounter.get(key);
- if (value == null)
+ if (value == null) {
value = new Integer(1);
- else
+ } else {
value = new Integer(value.intValue() + 1);
+ }
classMethodCallCounter.put(key, value);
return value.intValue() + ": " + key;
} catch (Exception e) {
@@ -93,10 +94,11 @@ public class Log {
public void add(int type, String message) {
String source = getSource();
if (type >= debug) {
- if (showClassInformation)
+ if (showClassInformation) {
System.out.println(source + ": " + message);
- else
+ } else {
System.out.println(message);
+ }
}
}