Skip to content

Commit

Permalink
[grid] log the complete exception
Browse files Browse the repository at this point in the history
  • Loading branch information
joerg1985 committed Jan 11, 2024
1 parent b2a8448 commit 8f35c47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/org/openqa/selenium/grid/Bootstrap.java
Expand Up @@ -76,7 +76,7 @@ private static void runMain(ClassLoader loader, String[] args) {
Method main = clazz.getMethod("main", String[].class);
main.invoke(null, new Object[] {args});
} catch (ReflectiveOperationException e) {
LOG.severe("Error during execution: " + e.getMessage());
LOG.log(Level.SEVERE, "Error during execution", e);
System.exit(1);
}
}
Expand Down

0 comments on commit 8f35c47

Please sign in to comment.