aboutsummaryrefslogtreecommitdiff
path: root/stage1/logger.scala
diff options
context:
space:
mode:
Diffstat (limited to 'stage1/logger.scala')
-rw-r--r--stage1/logger.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage1/logger.scala b/stage1/logger.scala
index ecc1579..b1d80a3 100644
--- a/stage1/logger.scala
+++ b/stage1/logger.scala
@@ -19,7 +19,7 @@ case class Logger(enabledLoggers: Set[String]) {
System.err.println( s"[${" "*(6-timeTaken.size)}$timeTaken][$name] $msg" )
}
- def showInvocation(method: String, args: Any) = method + "( " + args + " )"
+ def showInvocation(method: String, args: Any) = method ++ "( " ++ args.toString ++ " )"
final def stage1(msg: => String) = logGuarded(names.stage1, msg)
final def stage2(msg: => String) = logGuarded(names.stage2, msg)