diff --git a/src/main/scala/service/WebHookService.scala b/src/main/scala/service/WebHookService.scala index cf85ebb..fd4260c 100644 --- a/src/main/scala/service/WebHookService.scala +++ b/src/main/scala/service/WebHookService.scala @@ -37,7 +37,7 @@ import org.apache.http.impl.client.DefaultHttpClient import scala.concurrent._ import ExecutionContext.Implicits.global - logger.trace("start callWebHook") + logger.debug("start callWebHook") implicit val formats = Serialization.formats(NoTypeHints) val webHookURLs = getWebHookURLs(owner, repository) @@ -48,7 +48,7 @@ webHookURLs.foreach { webHookUrl => val f = future { - logger.trace("start web hook invocation for %s", webHookUrl) + logger.debug("start web hook invocation for %s", webHookUrl) val httpPost = new HttpPost(webHookUrl.url) val params: java.util.List[NameValuePair] = new java.util.ArrayList() @@ -57,7 +57,7 @@ httpClient.execute(httpPost) httpPost.releaseConnection() - logger.trace("end web hook invocation for %s", webHookUrl) + logger.debug("end web hook invocation for %s", webHookUrl) } f.onSuccess { case s => logger.debug(s"Success: web hook request to ${webHookUrl.url}") @@ -67,7 +67,7 @@ } } } - logger.trace("end callWebHook") + logger.debug("end callWebHook") } }