This commit is contained in:
Stefan Bethge 2015-06-08 00:35:41 +02:00
commit 1cbc94deba
2 changed files with 2 additions and 1 deletions

View File

@ -274,6 +274,7 @@
</executions>
<configuration>
<nosuffix>true</nosuffix>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>

View File

@ -405,7 +405,7 @@ object APIUtils extends Loggable {
responseCode match {
case 200 | 201 => tryo{parse(body)}
case _ => {
val failMsg = "Bad response code (" + responseCode + ") from server: " + body
val failMsg = "Bad response code (" + responseCode + ") from OBP API server: " + body
logger.warn(failMsg)
Failure(failMsg)
}