Skip to content

Commit

Permalink
Log exception as error instead of debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mendhak committed Nov 5, 2023
1 parent c444cd7 commit 56dd4a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static AuthState getAuthState() {
authState = AuthState.jsonDeserialize(open_street_map_auth_state);

} catch (JSONException e) {
LOG.debug(e.getMessage(), e);
LOG.error(e.getMessage(), e);
}
}

Expand Down

0 comments on commit 56dd4a2

Please sign in to comment.