The log-statement for unmapped exceptions really prints the unmapped error
[facebook-errors] / src / main / java / de / juplo / facebook / errors / GraphApiException.java
index 636b3d2..a781c3b 100644 (file)
@@ -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;
     }
   }