aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/logger
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/logger')
-rw-r--r--src/main/scala/logger/phases/Checks.scala6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main/scala/logger/phases/Checks.scala b/src/main/scala/logger/phases/Checks.scala
index 0109c7ad..707118e3 100644
--- a/src/main/scala/logger/phases/Checks.scala
+++ b/src/main/scala/logger/phases/Checks.scala
@@ -40,8 +40,10 @@ object Checks extends Phase {
)
}
if (lf.size > 1) {
- throw new LoggerException(s"""|At most one log file can be specified, but found ${lf.size} combinations of:
- | - an options or annotation: -ltf, --log-to-file, --log-file, LogFileAnnotation""".stripMargin)
+ throw new LoggerException(
+ s"""|At most one log file can be specified, but found ${lf.size} combinations of:
+ | - an options or annotation: -ltf, --log-to-file, --log-file, LogFileAnnotation""".stripMargin
+ )
}
annotations
}