mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-27 14:21:48 +01:00
Clarify and add more details to some log messages
Change-Id: I3b9df11748e41e857ed0bc3e166d1434743902de
This commit is contained in:
parent
202034ff83
commit
274cecbb09
@ -534,7 +534,8 @@ public class FlowRuleManager
|
||||
}
|
||||
}
|
||||
} catch (Exception e) {
|
||||
log.warn("Can't process added or extra rule {}", e);
|
||||
log.warn("Can't process added or extra rule {} for device {}:{}",
|
||||
rule, deviceId, e);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -496,7 +496,7 @@ public class IntentManager
|
||||
public void triggerCompile(Iterable<Key> intentKeys,
|
||||
boolean compileAllFailed) {
|
||||
// TODO figure out who is making excessive calls?
|
||||
log.trace("submitting {} + all?:{}", intentKeys, compileAllFailed);
|
||||
log.trace("submitting {} + all?:{} for compilation", intentKeys, compileAllFailed);
|
||||
buildAndSubmitBatches(intentKeys, compileAllFailed);
|
||||
}
|
||||
}
|
||||
|
||||
@ -422,7 +422,7 @@ public class ObjectiveTracker implements ObjectiveTrackerService {
|
||||
private final class InternalPartitionListener implements WorkPartitionEventListener {
|
||||
@Override
|
||||
public void event(WorkPartitionEvent event) {
|
||||
log.debug("got message {}", event.subject());
|
||||
log.debug("got message {}:{}", event.type(), event.subject());
|
||||
scheduleIntentUpdate(1);
|
||||
}
|
||||
}
|
||||
|
||||
@ -265,7 +265,7 @@ public class LinkDiscovery implements TimerTask {
|
||||
if (context.packetService() == null) {
|
||||
return;
|
||||
}
|
||||
log.trace("Sending probes out to {}@{}", portNumber, device.id());
|
||||
log.trace("Sending probes out of {}@{}", portNumber, device.id());
|
||||
OutboundPacket pkt = createOutBoundLldp(portNumber);
|
||||
context.packetService().emit(pkt);
|
||||
if (context.useBddp()) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user