added logs
git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portal/social-networking-library@69026 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
961d7de967
commit
35484273b9
|
@ -325,7 +325,10 @@ public final class DBCassandraAstyanaxImpl implements DatabookStore {
|
|||
m.withRow(cf_VRETline, feed.getVreid())
|
||||
.putColumn(feed.getTime().getTime()+"", feed.getKey().toString(), null);
|
||||
}
|
||||
return execute(m);
|
||||
boolean result = execute(m);
|
||||
if (result)
|
||||
_log.trace("saveAppFeed OK!");
|
||||
return result;
|
||||
}
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
|
|
|
@ -2,20 +2,15 @@ package org.gcube.portal.databook.server;
|
|||
|
||||
import java.io.IOException;
|
||||
import java.io.Serializable;
|
||||
import java.lang.reflect.MalformedParameterizedTypeException;
|
||||
import java.util.List;
|
||||
import java.util.Properties;
|
||||
|
||||
import org.gcube.common.core.contexts.GHNContext;
|
||||
import org.gcube.common.core.informationsystem.ISException;
|
||||
import org.gcube.common.core.informationsystem.client.AtomicCondition;
|
||||
import org.gcube.common.core.informationsystem.client.ISClient;
|
||||
import org.gcube.common.core.informationsystem.client.ISClient.ISMalformedQueryException;
|
||||
import org.gcube.common.core.informationsystem.client.ISClient.ISUnsupportedQueryException;
|
||||
import org.gcube.common.core.informationsystem.client.queries.GCUBERuntimeResourceQuery;
|
||||
import org.gcube.common.core.resources.GCUBERuntimeResource;
|
||||
import org.gcube.common.core.scope.GCUBEScope;
|
||||
import org.gcube.common.core.scope.GCUBEScope.MalformedScopeExpressionException;
|
||||
import org.gcube.common.core.utils.logging.GCUBEClientLog;
|
||||
import org.gcube.portal.databook.shared.ex.TooManyRunningClustersException;
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue