From 0f38e3b679211b322d69fb96c717f92eca037c36 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Wed, 20 Nov 2019 15:23:05 +0100 Subject: [PATCH] The log-statement for unmapped exceptions really prints the unmapped error --- .../java/de/juplo/facebook/errors/GraphApiException.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } } -- 2.20.1