Skip to content

Commit

Permalink
Attempt to report git revision in BuildInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Aug 5, 2017
1 parent 7833751 commit 1526350
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion java/server/src/org/openqa/grid/selenium/GridLauncherV3.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ public static void main(String[] args) throws Exception {

configureLogging(launcher.configuration);

log.info(String.format("Selenium version: '%s'", buildInfo.getReleaseLabel()));
log.info(String.format(
"Selenium build info: version: '%s', revision: '%s'",
buildInfo.getReleaseLabel(),
buildInfo.getBuildRevision()));
try {
launcher.launch();
} catch (Exception e) {
Expand Down

0 comments on commit 1526350

Please sign in to comment.