diff --git a/api-messages/src/main/groovy/yakworks/api/problem/data/NotFoundProblem.groovy b/api-messages/src/main/groovy/yakworks/api/problem/data/NotFoundProblem.groovy index 169c518..7e07d38 100644 --- a/api-messages/src/main/groovy/yakworks/api/problem/data/NotFoundProblem.groovy +++ b/api-messages/src/main/groovy/yakworks/api/problem/data/NotFoundProblem.groovy @@ -55,7 +55,8 @@ class NotFoundProblem implements DataProblemTrait { static class Exception extends DataProblemException { //Override it for performance improvement, because filling in the stack trace is quit expensive - @Override - synchronized Throwable fillInStackTrace() { return this } + //Disabled temporary to see the fullstack trace + //@Override + //synchronized Throwable fillInStackTrace() { return this } } }