git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/accounting/accounting-aggregator-se-plugin@132536 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
890fee74d0
commit
6d851f0db6
|
@ -99,7 +99,7 @@ public class AggregationUtility<T extends AggregatedRecord<T,?>> {
|
|||
@SuppressWarnings("rawtypes")
|
||||
Comparable thisValueComparable = (Comparable) thisValue;
|
||||
if(recordValueComparable.compareTo(thisValueComparable)!=0){
|
||||
logger.trace("{} != {}", recordValueComparable, thisValueComparable);
|
||||
logger.trace("isAggregable {} != {}", recordValueComparable, thisValueComparable);
|
||||
return false;
|
||||
}
|
||||
}else{
|
||||
|
|
|
@ -118,7 +118,7 @@ public class AccountingAggregatorPlugin extends Plugin<AccountingAggregatorPlugi
|
|||
if (inputs.containsKey("recovery"))
|
||||
RecoveryMode=(Integer)inputs.get("recovery");
|
||||
|
||||
logger.trace("Launch with Type:{}, Interval:{}, startTime:{}, Scope:{}, Recovery:{}",aggType.toString(),interval,inputStartTime,scope,RecoveryMode);
|
||||
logger.debug("Launch with Type:{}, Interval:{}, startTime:{}, Scope:{}, Recovery:{}",aggType.toString(),interval,inputStartTime,scope,RecoveryMode);
|
||||
|
||||
//Get Configuration from service end point
|
||||
String url=null;
|
||||
|
@ -431,7 +431,7 @@ public class AccountingAggregatorPlugin extends Plugin<AccountingAggregatorPlugi
|
|||
if (!succesfulDelete){
|
||||
logger.error("Error Delete record");
|
||||
}
|
||||
logger.trace("Delete complete {}, Start a insert aggregated document",countDelete);
|
||||
logger.debug("Delete complete {}, Start a insert aggregated document",countDelete);
|
||||
/**
|
||||
* delete all record and ready for insert a new aggregated record
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue