Currently, ovs.vsctl outputs the messages (e.g. just "unchanged" or "success") in the "info" log level for each transaction, but these messages are not meaningful for users. This patch changes the log level of these messages to "debug".
Signed-off-by: IWASE Yusuke <[email protected]> --- ryu/lib/ovs/vsctl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ryu/lib/ovs/vsctl.py b/ryu/lib/ovs/vsctl.py index f5db402..39e114e 100644 --- a/ryu/lib/ovs/vsctl.py +++ b/ryu/lib/ovs/vsctl.py @@ -990,9 +990,9 @@ class VSCtl(object): elif status == idl.Transaction.ABORTED: vsctl_fatal('transaction aborted') elif status == idl.Transaction.UNCHANGED: - LOG.info('unchanged') + LOG.debug('unchanged') elif status == idl.Transaction.SUCCESS: - LOG.info('success') + LOG.debug('success') elif status == idl.Transaction.TRY_AGAIN: return False elif status == idl.Transaction.ERROR: -- 2.7.4 ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, SlashDot.org! http://sdm.link/slashdot _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
