print all config
(self)
| 1626 | logger.info(f"Warning: Could not read version file - {e!s}") |
| 1627 | |
| 1628 | def print(self): |
| 1629 | """ |
| 1630 | print all config |
| 1631 | |
| 1632 | """ |
| 1633 | logger.info("Fasedeploy Commit Information :") |
| 1634 | for k, v in self.__dict__.items(): |
| 1635 | logger.info("{:<20}:{:<6}{}".format(k, "", v)) |
| 1636 | logger.info("=============================================================") |
| 1637 | |
| 1638 | |
| 1639 | class StructuredOutputsConfig: |