Print the current configuration to logs.
(self)
| 234 | r.close() |
| 235 | |
| 236 | def print(self): |
| 237 | """ |
| 238 | Print the current configuration to logs. |
| 239 | """ |
| 240 | llm_logger.info("GlobalScheduler Configuration Information :") |
| 241 | password = self.password |
| 242 | self.password = "******" |
| 243 | for k, v in self.__dict__.items(): |
| 244 | llm_logger.info("{:<20}:{:<6}{}".format(k, "", v)) |
| 245 | self.password = password |
| 246 | llm_logger.info("=============================================================") |
| 247 | |
| 248 | |
| 249 | class SchedulerConfig: |