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
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2015-04-30 00:09:37 +0300
committerChris Rebert <code@rebertia.com>2015-04-30 00:10:39 +0300
commit3e8fc4d974c24bee5e3bba02919d1e7e629edd1f (patch)
tree9b1175b2577787390875d614930b4f268d182300
parent36651d389ee6877b0b05f4791bac6ff964bacfbe (diff)
downgrade Travis incorrect hash logging from error to warning
-rw-r--r--src/main/scala/com/getbootstrap/savage/server/TravisAuthDirectives.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/com/getbootstrap/savage/server/TravisAuthDirectives.scala b/src/main/scala/com/getbootstrap/savage/server/TravisAuthDirectives.scala
index 163c3e2..a9fd7aa 100644
--- a/src/main/scala/com/getbootstrap/savage/server/TravisAuthDirectives.scala
+++ b/src/main/scala/com/getbootstrap/savage/server/TravisAuthDirectives.scala
@@ -43,7 +43,7 @@ trait TravisAuthDirectives {
}
}
else {
- log.error("Received Travis request with incorrect hash!")
+ log.warning("Received Travis request with incorrect hash!")
reject(ValidationRejection("Incorrect SHA-256 hash"))
}
}