Skip to content

Commit 0347409

Browse files
committed
SystemInformation: do not eat exceptions
It's not a particularly important one, but it might indicate a bug somewhere when it happens, so let's log it at DEBUG level.
1 parent 2c8496a commit 0347409

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/java/org/scijava/plugins/commands/debug/SystemInformation.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,9 @@ public void run() {
182182
final String key = "Implementation-Build";
183183
sourceRef = conn.getManifest().getMainAttributes().getValue(key);
184184
}
185-
catch (final IOException e) { }
185+
catch (final IOException e) {
186+
log.debug(e);
187+
}
186188
}
187189
}
188190
else {

0 commit comments

Comments
 (0)