Skip to content

Commit

Permalink
Remove redundant logs in info level
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Oct 17, 2022
1 parent bce8646 commit 80f424a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ public static Optional<Segment> determineUnchangedSegment( boolean allowMajorUpd
: allowIncrementalUpdates
? of( MINOR )
: of( INCREMENTAL );
if ( log != null && log.isInfoEnabled() )
if ( log != null && log.isDebugEnabled() )
{
log.info(
log.debug(
unchangedSegment.map( s -> Segment.of( s.value() + 1 ).toString() )
.orElse( "ALL" ) + " version changes allowed" );
}
Expand Down

0 comments on commit 80f424a

Please sign in to comment.