Print the current configuration to logs.
(self)
| 83 | pass |
| 84 | |
| 85 | def print(self): |
| 86 | """ |
| 87 | Print the current configuration to logs. |
| 88 | """ |
| 89 | config_logger.info("LocalScheduler Configuration Information :") |
| 90 | for k, v in self.__dict__.items(): |
| 91 | config_logger.info("{:<20}:{:<6}{}".format(k, "", v)) |
| 92 | config_logger.info("=============================================================") |
| 93 | |
| 94 | |
| 95 | class DPLocalSchedulerConfig(LocalSchedulerConfig): |