changed log level
This commit is contained in:
parent
5a238415be
commit
1e0fd6c387
@ -123,7 +123,7 @@ public class CalculatedFieldManagerMessageProcessor extends AbstractContextAware
|
|||||||
|
|
||||||
if (calculatedField != null) {
|
if (calculatedField != null) {
|
||||||
msg.getState().setRequiredArguments(calculatedField.getArgNames());
|
msg.getState().setRequiredArguments(calculatedField.getArgNames());
|
||||||
log.info("Pushing CF state restore msg to specific actor [{}]", msg.getId().entityId());
|
log.debug("Pushing CF state restore msg to specific actor [{}]", msg.getId().entityId());
|
||||||
getOrCreateActor(msg.getId().entityId()).tell(msg);
|
getOrCreateActor(msg.getId().entityId()).tell(msg);
|
||||||
} else {
|
} else {
|
||||||
cfStateService.removeState(msg.getId(), msg.getCallback());
|
cfStateService.removeState(msg.getId(), msg.getCallback());
|
||||||
@ -218,7 +218,7 @@ public class CalculatedFieldManagerMessageProcessor extends AbstractContextAware
|
|||||||
private void onEntityDeleted(ComponentLifecycleMsg msg, TbCallback callback) {
|
private void onEntityDeleted(ComponentLifecycleMsg msg, TbCallback callback) {
|
||||||
cfEntityCache.evict(tenantId, msg.getEntityId());
|
cfEntityCache.evict(tenantId, msg.getEntityId());
|
||||||
if (isMyPartition(msg.getEntityId(), callback)) {
|
if (isMyPartition(msg.getEntityId(), callback)) {
|
||||||
log.info("Pushing entity lifecycle msg to specific actor [{}]", msg.getEntityId());
|
log.debug("Pushing entity lifecycle msg to specific actor [{}]", msg.getEntityId());
|
||||||
getOrCreateActor(msg.getEntityId()).tell(new CalculatedFieldEntityDeleteMsg(tenantId, msg.getEntityId(), callback));
|
getOrCreateActor(msg.getEntityId()).tell(new CalculatedFieldEntityDeleteMsg(tenantId, msg.getEntityId(), callback));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -437,12 +437,12 @@ public class CalculatedFieldManagerMessageProcessor extends AbstractContextAware
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void deleteCfForEntity(EntityId entityId, CalculatedFieldId cfId, TbCallback callback) {
|
private void deleteCfForEntity(EntityId entityId, CalculatedFieldId cfId, TbCallback callback) {
|
||||||
log.info("Pushing delete CF msg to specific actor [{}]", entityId);
|
log.debug("Pushing delete CF msg to specific actor [{}]", entityId);
|
||||||
getOrCreateActor(entityId).tell(new CalculatedFieldEntityDeleteMsg(tenantId, cfId, callback));
|
getOrCreateActor(entityId).tell(new CalculatedFieldEntityDeleteMsg(tenantId, cfId, callback));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void initCfForEntity(EntityId entityId, CalculatedFieldCtx cfCtx, boolean forceStateReinit, TbCallback callback) {
|
private void initCfForEntity(EntityId entityId, CalculatedFieldCtx cfCtx, boolean forceStateReinit, TbCallback callback) {
|
||||||
log.info("Pushing entity init CF msg to specific actor [{}]", entityId);
|
log.debug("Pushing entity init CF msg to specific actor [{}]", entityId);
|
||||||
getOrCreateActor(entityId).tell(new EntityInitCalculatedFieldMsg(tenantId, cfCtx, callback, forceStateReinit));
|
getOrCreateActor(entityId).tell(new EntityInitCalculatedFieldMsg(tenantId, cfCtx, callback, forceStateReinit));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user