diff --git a/lisa/features/startstop.py b/lisa/features/startstop.py index 02e1f9c41f..985c3a1855 100644 --- a/lisa/features/startstop.py +++ b/lisa/features/startstop.py @@ -4,6 +4,7 @@ from typing import Any from lisa.feature import Feature +from lisa.util.logger import get_logger FEATURE_NAME_STARTSTOP = "StartStop" @@ -11,7 +12,7 @@ class StartStop(Feature): def __init__(self, node: Any, platform: Any) -> None: super().__init__(node, platform) - self._log = self._node.log + self._log = get_logger("startstop", self.name(), self._node.log) @classmethod def name(cls) -> str: