Skip to content
This repository was archived by the owner on Mar 8, 2020. It is now read-only.

Commit d5e5531

Browse files
Denys Smirnovdennwc
authored andcommitted
print exceptions to stderr instead of silently dropping them
Signed-off-by: Denys Smirnov <denys@sourced.tech>
1 parent e744ab7 commit d5e5531

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

native/src/main/java/bblfsh/Main.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ public static void main(String args[]) {
1212
} catch (CloseException e) {
1313
System.exit(0);
1414
} catch (DriverException e) {
15+
e.printStackTrace(System.err);
1516
System.exit(1);
1617
}
1718
}

0 commit comments

Comments
 (0)