Skip to content

Commit

Permalink
Log warning if H3 version cannot be found automatically.
Browse files Browse the repository at this point in the history
  • Loading branch information
csrster committed Aug 11, 2021
1 parent 77c3130 commit e1e2cc4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,9 @@ public static String getHeritrix3VersionString() {
}
}
if (h3version == null) {
h3version = "unknownHeritrixVersion";
log.warn("Could not determine Heritrix 3 version, falling back to hard-coded"
+ "value {}", HERITRIX3_VERSION);
h3version = HERITRIX3_VERSION;
}
log.debug("Final H3 version: {}", h3version);
return h3version;
Expand Down

0 comments on commit e1e2cc4

Please sign in to comment.