Merge "Log radvd config contents on reload when debug is on"

This commit is contained in:
Zuul 2018-01-23 03:58:56 +00:00 committed by Gerrit Code Review
commit d32ad6ee52
1 changed files with 3 additions and 1 deletions

View File

@ -123,7 +123,9 @@ class DaemonMonitor(object):
max_rtr_adv_interval=self._agent_conf.max_rtr_adv_interval,
network_mtu=int(network_mtu)))
file_utils.replace_file(radvd_conf, buf.getvalue())
contents = buf.getvalue()
LOG.debug("radvd config = %s", contents)
file_utils.replace_file(radvd_conf, contents)
return radvd_conf
def _get_radvd_process_manager(self, callback=None):