Skip to content

Commit

Permalink
fix: improve warning message on versions misalignment
Browse files Browse the repository at this point in the history
  • Loading branch information
metacosm committed Apr 26, 2023
1 parent cb5b299 commit 4beb89e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ private void checkVersionCompatibility(String found, String expected, String nam
if (buildTimeConfiguration.failOnVersionCheck) {
throw new RuntimeException(message);
} else {
log.warn(message);
log.warn(message + ". Things might not work as expected, though they probably should in micro version updates.");
}
}
}
Expand Down

0 comments on commit 4beb89e

Please sign in to comment.