Fixed log

This commit is contained in:
Luca Frosini 2021-05-28 10:20:40 +02:00
parent c6cfad6dcc
commit b508ce1ee0
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ public class ConnectorManager {
return Response.seeOther(new URI(baseUrl))
.cookie(cookie).cookie(cookieHideHeader).build();
}catch(Exception e){
e.printStackTrace();
log.error("Error while creating the Response", e);
return Response.serverError().build();
}
}