aboutsummaryrefslogtreecommitdiff
path: root/stage1/logger.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-03-18 00:05:54 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2016-03-18 00:05:54 -0400
commitcb37198374fa25e2ac1f46ccd6fe3ba98d79dd24 (patch)
treedb2715a94ba7afe8876a29f4d14078f7b8bea3a1 /stage1/logger.scala
parentf9ce0472aea0d6f646e8f7487f63ab8c4e42d22a (diff)
downloadcbt-cb37198374fa25e2ac1f46ccd6fe3ba98d79dd24.tar.gz
cbt-cb37198374fa25e2ac1f46ccd6fe3ba98d79dd24.tar.bz2
cbt-cb37198374fa25e2ac1f46ccd6fe3ba98d79dd24.zip
Add support for git dependencies
pair coded with @chavxo
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 5e8858a..e513443 100644
--- a/stage1/logger.scala
+++ b/stage1/logger.scala
@@ -29,6 +29,7 @@ case class Logger(enabledLoggers: Set[String]) {
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)
+ final def git(msg: => String) = logGuarded(names.git, msg)
final def pom(msg: => String) = logGuarded(names.pom, msg)
private object names{
@@ -41,6 +42,7 @@ case class Logger(enabledLoggers: Set[String]) {
val lib = "lib"
val test = "test"
val pom = "pom"
+ val git = "git"
}
private def logGuarded(name: String, msg: => String) = {