Skip to content

Commit

Permalink
Minor logging error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
switschel committed Oct 9, 2024
1 parent 7ab3824 commit a362156
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ public ResponseEntity<String> deleteMapping(@PathVariable String id) {
});
}
} catch (Exception ex) {
log.error("Tenant {} - Exception when deleting mapping {}", tenant, ex);
log.error("Tenant {} - Exception when deleting mapping: ", tenant, ex);
throw new ResponseStatusException(HttpStatus.NOT_ACCEPTABLE, ex.getLocalizedMessage());
}
log.info("Tenant {} - Mapping {} successfully deleted!", tenant, id);
Expand Down

0 comments on commit a362156

Please sign in to comment.