Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@95651 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
8b792b4e6d
commit
09ffc448e4
|
@ -2209,6 +2209,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
if (task.getResult() != null) {
|
if (task.getResult() != null) {
|
||||||
logger.debug("Task exception:"
|
logger.debug("Task exception:"
|
||||||
+ task.getErrorCause());
|
+ task.getErrorCause());
|
||||||
|
task.getErrorCause().printStackTrace();
|
||||||
importMonitor.setError(task.getErrorCause());
|
importMonitor.setError(task.getErrorCause());
|
||||||
} else {
|
} else {
|
||||||
logger.debug("Task exception: Error In Import");
|
logger.debug("Task exception: Error In Import");
|
||||||
|
@ -2603,6 +2604,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
if (task.getResult() != null) {
|
if (task.getResult() != null) {
|
||||||
logger.debug("Task exception:"
|
logger.debug("Task exception:"
|
||||||
+ task.getErrorCause());
|
+ task.getErrorCause());
|
||||||
|
task.getErrorCause().printStackTrace();
|
||||||
importMonitor.setError(task.getErrorCause());
|
importMonitor.setError(task.getErrorCause());
|
||||||
} else {
|
} else {
|
||||||
logger.debug("Task exception: Error In Import");
|
logger.debug("Task exception: Error In Import");
|
||||||
|
@ -3253,6 +3255,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
if (task.getResult() != null) {
|
if (task.getResult() != null) {
|
||||||
logger.debug("Task exception:"
|
logger.debug("Task exception:"
|
||||||
+ task.getErrorCause());
|
+ task.getErrorCause());
|
||||||
|
task.getErrorCause().printStackTrace();
|
||||||
exportMonitor.setError(task.getErrorCause());
|
exportMonitor.setError(task.getErrorCause());
|
||||||
} else {
|
} else {
|
||||||
logger.debug("Task exception: Error In Export");
|
logger.debug("Task exception: Error In Export");
|
||||||
|
@ -3432,6 +3435,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
if (task.getResult() != null) {
|
if (task.getResult() != null) {
|
||||||
logger.debug("Task exception:"
|
logger.debug("Task exception:"
|
||||||
+ task.getErrorCause());
|
+ task.getErrorCause());
|
||||||
|
task.getErrorCause().printStackTrace();
|
||||||
exportMonitor.setError(new Throwable(task
|
exportMonitor.setError(new Throwable(task
|
||||||
.getErrorCause()));
|
.getErrorCause()));
|
||||||
} else {
|
} else {
|
||||||
|
@ -4073,8 +4077,9 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
switch (changeColumnTypeMonitor.getStatus()) {
|
switch (changeColumnTypeMonitor.getStatus()) {
|
||||||
case FAILED:
|
case FAILED:
|
||||||
if (task.getResult() != null) {
|
if (task.getResult() != null) {
|
||||||
logger.debug("Task exception:"
|
logger.debug("Task exception: "
|
||||||
+ task.getErrorCause());
|
+ task.getErrorCause());
|
||||||
|
task.getErrorCause().printStackTrace();
|
||||||
changeColumnTypeMonitor.setError(new Throwable(task
|
changeColumnTypeMonitor.setError(new Throwable(task
|
||||||
.getErrorCause()));
|
.getErrorCause()));
|
||||||
} else {
|
} else {
|
||||||
|
@ -4219,6 +4224,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
if (task.getResult() != null) {
|
if (task.getResult() != null) {
|
||||||
logger.debug("Task exception:"
|
logger.debug("Task exception:"
|
||||||
+ task.getErrorCause());
|
+ task.getErrorCause());
|
||||||
|
task.getErrorCause().printStackTrace();
|
||||||
deleteColumnMonitor.setError(new Throwable(task
|
deleteColumnMonitor.setError(new Throwable(task
|
||||||
.getErrorCause()));
|
.getErrorCause()));
|
||||||
} else {
|
} else {
|
||||||
|
@ -4364,6 +4370,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
if (task.getResult() != null) {
|
if (task.getResult() != null) {
|
||||||
logger.debug("Task exception:"
|
logger.debug("Task exception:"
|
||||||
+ task.getErrorCause());
|
+ task.getErrorCause());
|
||||||
|
task.getErrorCause().printStackTrace();
|
||||||
labelColumnMonitor.setError(new Throwable(task
|
labelColumnMonitor.setError(new Throwable(task
|
||||||
.getErrorCause()));
|
.getErrorCause()));
|
||||||
} else {
|
} else {
|
||||||
|
@ -4509,6 +4516,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
if (task.getResult() != null) {
|
if (task.getResult() != null) {
|
||||||
logger.debug("Task exception:"
|
logger.debug("Task exception:"
|
||||||
+ task.getErrorCause());
|
+ task.getErrorCause());
|
||||||
|
task.getErrorCause().printStackTrace();
|
||||||
changeTableTypeMonitor.setError(new Throwable(task
|
changeTableTypeMonitor.setError(new Throwable(task
|
||||||
.getErrorCause()));
|
.getErrorCause()));
|
||||||
} else {
|
} else {
|
||||||
|
@ -4768,6 +4776,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
if (task.getResult() != null) {
|
if (task.getResult() != null) {
|
||||||
logger.debug("Task exception: "
|
logger.debug("Task exception: "
|
||||||
+ task.getErrorCause());
|
+ task.getErrorCause());
|
||||||
|
task.getErrorCause().printStackTrace();
|
||||||
deleteRowsMonitor.setError(new Throwable(task
|
deleteRowsMonitor.setError(new Throwable(task
|
||||||
.getErrorCause()));
|
.getErrorCause()));
|
||||||
} else {
|
} else {
|
||||||
|
@ -4977,6 +4986,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
if (task.getResult() != null) {
|
if (task.getResult() != null) {
|
||||||
logger.debug("Task exception:"
|
logger.debug("Task exception:"
|
||||||
+ task.getErrorCause());
|
+ task.getErrorCause());
|
||||||
|
task.getErrorCause().printStackTrace();
|
||||||
duplicatesMonitor.setError(new Throwable(task
|
duplicatesMonitor.setError(new Throwable(task
|
||||||
.getErrorCause()));
|
.getErrorCause()));
|
||||||
} else {
|
} else {
|
||||||
|
@ -5334,6 +5344,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
if (task.getResult() != null) {
|
if (task.getResult() != null) {
|
||||||
logger.debug("Task exception:"
|
logger.debug("Task exception:"
|
||||||
+ task.getErrorCause());
|
+ task.getErrorCause());
|
||||||
|
task.getErrorCause().printStackTrace();
|
||||||
templateApplyMonitor.setError(new Throwable(task
|
templateApplyMonitor.setError(new Throwable(task
|
||||||
.getErrorCause()));
|
.getErrorCause()));
|
||||||
} else {
|
} else {
|
||||||
|
@ -5517,6 +5528,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
if (task.getResult() != null) {
|
if (task.getResult() != null) {
|
||||||
logger.debug("Task exception:"
|
logger.debug("Task exception:"
|
||||||
+ task.getErrorCause());
|
+ task.getErrorCause());
|
||||||
|
task.getErrorCause().printStackTrace();
|
||||||
replaceColumnMonitor.setError(new Throwable(task
|
replaceColumnMonitor.setError(new Throwable(task
|
||||||
.getErrorCause()));
|
.getErrorCause()));
|
||||||
} else {
|
} else {
|
||||||
|
@ -5669,6 +5681,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
if (task.getResult() != null) {
|
if (task.getResult() != null) {
|
||||||
logger.debug("Task exception:"
|
logger.debug("Task exception:"
|
||||||
+ task.getErrorCause());
|
+ task.getErrorCause());
|
||||||
|
task.getErrorCause().printStackTrace();
|
||||||
replaceBatchColumnMonitor.setError(new Throwable(
|
replaceBatchColumnMonitor.setError(new Throwable(
|
||||||
task.getErrorCause()));
|
task.getErrorCause()));
|
||||||
} else {
|
} else {
|
||||||
|
@ -6129,6 +6142,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
||||||
if (task.getResult() != null) {
|
if (task.getResult() != null) {
|
||||||
logger.debug("Task exception:"
|
logger.debug("Task exception:"
|
||||||
+ task.getErrorCause());
|
+ task.getErrorCause());
|
||||||
|
task.getErrorCause().printStackTrace();
|
||||||
rollBackMonitor.setError(new Throwable(task
|
rollBackMonitor.setError(new Throwable(task
|
||||||
.getErrorCause()));
|
.getErrorCause()));
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue