Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/savage.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2015-03-24 08:59:49 +0300
committerChris Rebert <code@rebertia.com>2015-03-24 08:59:49 +0300
commit51d0eed752f200396e73bababa04ec9b9454c85f (patch)
treec6eb45c674fdf2c39207ecd5bb1035f8b275cfdd /src
parent456e45e703460f05f081395fc115b3481ef8f505 (diff)
BranchDeleter: Avoid some redundancy in log message
Diffstat (limited to 'src')
-rw-r--r--src/main/scala/com/getbootstrap/savage/server/BranchDeleter.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/com/getbootstrap/savage/server/BranchDeleter.scala b/src/main/scala/com/getbootstrap/savage/server/BranchDeleter.scala
index 33eb162..396130f 100644
--- a/src/main/scala/com/getbootstrap/savage/server/BranchDeleter.scala
+++ b/src/main/scala/com/getbootstrap/savage/server/BranchDeleter.scala
@@ -19,7 +19,7 @@ class BranchDeleter extends GitHubActorWithLogging {
if (repoSha == commitSha.sha) {
val remote = settings.TestRepoId.asPushRemote
val process = SimpleSubprocess(Seq("git", "push", remote, ":" + branch.name))
- log.info(s"Deleting branch ${branch} from remote ${remote}")
+ log.info(s"Deleting ${branch} from remote ${remote}")
process.run() match {
case SuccessfulExit(_) => log.info(s"Successfully deleted ${branch} in ${remote}")
case ErrorExit(exitValue, output) => log.error(s"Error deleting ${branch} in ${remote} :\nExit code: ${exitValue}\n${output}")