From: Kai Moritz Date: Wed, 20 Nov 2019 14:23:05 +0000 (+0100) Subject: The log-statement for unmapped exceptions really prints the unmapped error X-Git-Url: https://juplo.de/gitweb/?p=facebook-errors;a=commitdiff_plain;h=0f38e3b679211b322d69fb96c717f92eca037c36 The log-statement for unmapped exceptions really prints the unmapped error --- diff --git a/src/main/java/de/juplo/facebook/errors/GraphApiException.java b/src/main/java/de/juplo/facebook/errors/GraphApiException.java index 636b3d2..a781c3b 100644 --- a/src/main/java/de/juplo/facebook/errors/GraphApiException.java +++ b/src/main/java/de/juplo/facebook/errors/GraphApiException.java @@ -210,8 +210,9 @@ public class GraphApiException extends RuntimeException case 2200: return new CallbackVerificationFailedException(status, headers, error); default: - LOG.info("unmapped error: {}", error); - return new UnmappedErrorException(status, headers, error); + GraphApiException e = new UnmappedErrorException(status, headers, error); + LOG.info("unmapped error: {}", e.toString()); + return e; } }