MCPcopy Create free account
hub / github.com/PaddlePaddle/FastDeploy / print

Method print

fastdeploy/scheduler/config.py:236–246  ·  view source on GitHub ↗

Print the current configuration to logs.

(self)

Source from the content-addressed store, hash-verified

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
249class SchedulerConfig:

Callers

nothing calls this directly

Calls 3

itemsMethod · 0.80
infoMethod · 0.45
formatMethod · 0.45

Tested by

no test coverage detected