aboutsummaryrefslogtreecommitdiff
path: root/stage1/logger.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-03-06 23:35:57 -0500
committerChristopher Vogt <oss.nsp@cvogt.org>2016-03-06 23:35:57 -0500
commitf0dc760df8757caea1d83b15142a3d0704488636 (patch)
treea3c9d8351de510d98610910862f91d8826b33ce1 /stage1/logger.scala
parent4dae0e69f4b2947942d5ff7d4edee482073ee26b (diff)
downloadcbt-f0dc760df8757caea1d83b15142a3d0704488636.tar.gz
cbt-f0dc760df8757caea1d83b15142a3d0704488636.tar.bz2
cbt-f0dc760df8757caea1d83b15142a3d0704488636.zip
trap and pass exit codes throug the app, pass logger on to tests, remove the lib. qualification from Stage1 for better readability
Diffstat (limited to 'stage1/logger.scala')
-rw-r--r--stage1/logger.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/stage1/logger.scala b/stage1/logger.scala
index eaf64db..ecc1579 100644
--- a/stage1/logger.scala
+++ b/stage1/logger.scala
@@ -28,6 +28,7 @@ case class Logger(enabledLoggers: Set[String]) {
final def composition(msg: => String) = logGuarded(names.composition, msg)
final def resolver(msg: => String) = logGuarded(names.resolver, msg)
final def lib(msg: => String) = logGuarded(names.lib, msg)
+ final def test(msg: => String) = logGuarded(names.test, msg)
private object names{
val stage1 = "stage1"
@@ -37,6 +38,7 @@ case class Logger(enabledLoggers: Set[String]) {
val resolver = "resolver"
val composition = "composition"
val lib = "lib"
+ val test = "test"
}
private def logGuarded(name: String, msg: => String) = {