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

Method print

fastdeploy/config.py:1370–1377  ·  view source on GitHub ↗

Print all configuration information.

(self)

Source from the content-addressed store, hash-verified

1368 return json.dumps({key: value for key, value in self.__dict__.items() if value is not None})
1369
1370 def print(self):
1371 """
1372 Print all configuration information.
1373 """
1374 logger.info("EPLB Configuration Information :")
1375 for k, v in self.__dict__.items():
1376 logger.info("{:<20}:{:<6}{}".format(k, "", v))
1377 logger.info("=============================================================")
1378
1379
1380class CacheConfig:

Callers

nothing calls this directly

Calls 3

itemsMethod · 0.80
infoMethod · 0.45
formatMethod · 0.45

Tested by

no test coverage detected