Reduce log level from "warn" to "debug" for "upcall: no reference to recirc flow" log message.
Suggested-by: Jarno Rajahalme <ja...@ovn.org> Signed-off-by: Lance Richardson <lrich...@redhat.com> --- v2: Instead of ignoring log message in system-traffic.at, reduce level so it no longer appears in the log. ofproto/ofproto-dpif-upcall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ofproto/ofproto-dpif-upcall.c b/ofproto/ofproto-dpif-upcall.c index 042a50a..e447308 100644 --- a/ofproto/ofproto-dpif-upcall.c +++ b/ofproto/ofproto-dpif-upcall.c @@ -1147,7 +1147,7 @@ should_install_flow(struct udpif *udpif, struct upcall *upcall) if (upcall->type != DPIF_UC_MISS) { return false; } else if (upcall->recirc && !upcall->have_recirc_ref) { - VLOG_WARN_RL(&rl, "upcall: no reference for recirc flow"); + VLOG_DBG_RL(&rl, "upcall: no reference for recirc flow"); return false; } -- 2.5.5 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev