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. Signed-off-by: Ilya Maximets <[email protected]> --- lib/dpif-netdev-private-extract.c | 4 ++-- 1 file 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; } -- 2.31.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
