summaryrefslogtreecommitdiff
path: root/crashbox-server/src/main/scala/io/crashbox/ci/Schedulers.scala
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2017-03-06 03:30:41 -0800
committerJakob Odersky <jakob@odersky.com>2017-03-06 03:30:41 -0800
commitdb1c748be84c29bc483195439a21e2b9d44da63b (patch)
tree7e8056d53b4206b0314fa83ab5290cdb4d9e4fc5 /crashbox-server/src/main/scala/io/crashbox/ci/Schedulers.scala
parentbd7083167c1a0899f722971fb90ce41c96de252f (diff)
downloadcrashbox-ci-db1c748be84c29bc483195439a21e2b9d44da63b.tar.gz
crashbox-ci-db1c748be84c29bc483195439a21e2b9d44da63b.tar.bz2
crashbox-ci-db1c748be84c29bc483195439a21e2b9d44da63b.zip
Basic http api
Diffstat (limited to 'crashbox-server/src/main/scala/io/crashbox/ci/Schedulers.scala')
-rw-r--r--crashbox-server/src/main/scala/io/crashbox/ci/Schedulers.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/crashbox-server/src/main/scala/io/crashbox/ci/Schedulers.scala b/crashbox-server/src/main/scala/io/crashbox/ci/Schedulers.scala
index e9f2a82..01c278d 100644
--- a/crashbox-server/src/main/scala/io/crashbox/ci/Schedulers.scala
+++ b/crashbox-server/src/main/scala/io/crashbox/ci/Schedulers.scala
@@ -52,10 +52,11 @@ trait Schedulers extends { self: Core with Source with Builders with Parsers =>
containerId foreach { cancelBuild(_) }
out foreach { _.close() }
buildDir foreach { _.delete() }
+ log.info(s"Stopped build of $url")
}
override def preStart() = {
- log.info(s"Started build manager for $url")
+ log.info(s"Started build of $url")
self ! Cloning(url)
}