mirror of
https://github.com/Wisser/Jailer.git
synced 2026-05-24 11:39:31 -05:00
don't warn if session is already down
This commit is contained in:
+3
-1
@@ -835,7 +835,9 @@ public abstract class WhereConditionEditorPanel extends javax.swing.JPanel {
|
||||
value = result.toString();
|
||||
} catch (Throwable t) {
|
||||
if (!(t instanceof CancellationException)) {
|
||||
LogUtil.warn(t);
|
||||
if (!session.isDown()) {
|
||||
LogUtil.warn(t);
|
||||
}
|
||||
}
|
||||
value = null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user