diff --git a/f5_ctlr_agent/bigipconfigdriver.py b/f5_ctlr_agent/bigipconfigdriver.py index 4b82a65..5bc3ba4 100644 --- a/f5_ctlr_agent/bigipconfigdriver.py +++ b/f5_ctlr_agent/bigipconfigdriver.py @@ -42,6 +42,7 @@ from f5.bigip import ManagementRoot log = logging.getLogger(__name__) +log.propagate = False console = logging.StreamHandler() console.setFormatter( logging.Formatter("[%(asctime)s %(name)s %(levelname)s] %(message)s")) @@ -545,7 +546,7 @@ def timer_cb(): self._backoff_timer = threading.Timer( self._backoff_time, timer_cb ) - log.error("Error applying config, will try again in %s seconds", + log.error("[ctrl agent] Error applying config, will try again in %s seconds", self._backoff_time) self._backoff_timer.start() if self._backoff_time < self._max_backoff_time: