diff options
Diffstat (limited to 'src/Tomato')
-rw-r--r-- | src/Tomato/Retrieve.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Tomato/Retrieve.hs b/src/Tomato/Retrieve.hs index 014d836..c43607e 100644 --- a/src/Tomato/Retrieve.hs +++ b/src/Tomato/Retrieve.hs @@ -44,7 +44,10 @@ queryTomato = do "client_id" =: clientId tomato <- case Ae.fromJSON (responseBody js) of Ae.Success r -> pure r - Ae.Error s -> throwM $ DecodeException $ "Get tomato url" <> T.pack s + Ae.Error s -> throwM $ DecodeException $ + "Get tomato url: " <> + T.pack s <> + T.pack (show (responseBody js)) return tomato -- | Download a specific tomato |