Skip to content

Commit

Permalink
Reduce line length
Browse files Browse the repository at this point in the history
  • Loading branch information
julianladisch committed Sep 2, 2024
1 parent 80e76df commit 9e430c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ static boolean belongs(TimerDescriptor timerDescriptor, String tenantId) {
return Objects.equals(tenantProductSeq.getTenantId(), tenantId);
} catch (RuntimeException e) {
var id = timerDescriptor == null ? "null" : timerDescriptor.getId();
logger.error("Comparing TimerDescriptor throws exception: id={}, tenantId={}", id, tenantId, e);
logger.error("Comparing TimerDescriptor fails: id={}, tenantId={}", id, tenantId, e);
return false;
}
}
Expand Down

0 comments on commit 9e430c9

Please sign in to comment.