From be9d6bb41801567f2446c8e4efb1bdb69e503ab7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20Mili=C4=87?= Date: Thu, 20 May 2021 15:40:34 +0200 Subject: [PATCH] debugfix/Add more logging at OAuthHandshake oauth/initiate --- obp-api/src/main/scala/code/api/oauth1.0.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/obp-api/src/main/scala/code/api/oauth1.0.scala b/obp-api/src/main/scala/code/api/oauth1.0.scala index e745bb852..c84f22613 100644 --- a/obp-api/src/main/scala/code/api/oauth1.0.scala +++ b/obp-api/src/main/scala/code/api/oauth1.0.scala @@ -63,6 +63,7 @@ object OAuthHandshake extends RestHelper with MdcLoggable { //Handling get request for a "request token" case Req("oauth" :: "initiate" :: Nil,_ , PostRequest) => { + logger.debug("Hello from oauth/initiate POST") //Extract the OAuth parameters from the header and test if the request is valid var (httpCode, message, oAuthParameters) = validator("requestToken", "POST") //Test if the request is valid