Alessandro Pieve 2016-10-04 08:41:41 +00:00
parent 890fee74d0
commit 6d851f0db6
2 changed files with 3 additions and 3 deletions

View File

@ -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{

View File

@ -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
*/