提交 84f66c22 编写于 作者: E Evgeny Fradkin

#1599 The errors logging is a bit improved.

上级 5b309c1d
......@@ -125,7 +125,7 @@ public class MockDataExecuteWizard extends AbstractToolWizard<DBSDataManipulato
batch.close();
}
} catch (Exception e) {
String message = "Error removing the data.";
String message = " Error removing the data: " + e.getMessage() + ".";
log.error(message, e);
logPage.appendLog(message, true);
} finally {
......@@ -193,7 +193,7 @@ public class MockDataExecuteWizard extends AbstractToolWizard<DBSDataManipulato
logPage.appendLog(" Duration: " + insertStats.getExecuteTime() + "ms\n");
} catch (DBException e) {
String message = "Error inserting Mock Data.";
String message = " Error inserting Mock Data: " + e.getMessage() + ".";
log.error(message, e);
logPage.appendLog(message, true);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册