Source code for tango.steps.print

import logging
from typing import Any

from tango.common.logging import cli_logger
from tango.step import Step


[docs]@Step.register("print") class PrintStep(Step): """ This step just logs or prints its input and also returns what it prints. """ DETERMINISTIC = True CACHEABLE = False # so fast it's not worth caching
[docs] def run(self, input: Any) -> str: # type: ignore[override] """ Print out the input. """ out = str(input) if self.logger.isEnabledFor(logging.INFO): self.logger.info(out) elif cli_logger.isEnabledFor(logging.INFO): cli_logger.info(out) else: print(out) return out