Proper exception logging.

This commit is contained in:
Johannes Mockenhaupt 2019-07-14 16:59:00 +02:00
parent 2c07bc4c3b
commit 240c83e83a
No known key found for this signature in database
GPG key ID: 9E1EA6AF7BBBB0D1

View file

@ -39,7 +39,7 @@ public class OKDialog {
builder.create().show(); builder.create().show();
} catch (Exception e) { } catch (Exception e) {
log.debug("show_dialog exception: " + e); log.debug("show_dialog exception: ", e);
} }
} }