summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Maximets <i.maximets@ovn.org>2022-01-04 00:16:03 +0100
committerIlya Maximets <i.maximets@ovn.org>2022-01-04 17:19:18 +0100
commit28ef2535c1d729492e5bf76faa42dfacfa169bc1 (patch)
treedc2215e1d611e27df0b3be764a2b1ec5b544dd73
parent38c53dd17d41637ccd92f2bb1ba0cd6c39c1dd6a (diff)
downloadopenvswitch-28ef2535c1d729492e5bf76faa42dfacfa169bc1.tar.gz
dpif-netdev-extract: Change availability log level to DBG.
Availability logs are not essential for a normal run. The same information can be obtained via appctl in runtime. They also can not show if particular implementation will actually be used or not, hence not useful for post-crash investigations. Moving to DBG level to avoid bulky unnecessary logging. Additionally making them a bit more readable. Acked-by: Kumar Amber <kumar.amber@intel.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
-rw-r--r--lib/dpif-netdev-private-extract.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dpif-netdev-private-extract.c b/lib/dpif-netdev-private-extract.c
index 5f29861b8..a29bdcfa7 100644
--- a/lib/dpif-netdev-private-extract.c
+++ b/lib/dpif-netdev-private-extract.c
@@ -116,8 +116,8 @@ dpif_miniflow_extract_init(void)
/* Return zero is success, non-zero means error. */
avail = (mfex_impls[i].probe() == 0);
}
- VLOG_INFO("Miniflow Extract implementation %s (available: %s)\n",
- mfex_impls[i].name, avail ? "available" : "not available");
+ VLOG_DBG("Miniflow Extract implementation '%s' %s available.",
+ mfex_impls[i].name, avail ? "is" : "is not");
mfex_impls[i].available = avail;
}