Print all configuration information.
(self)
| 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 | |
| 1380 | class CacheConfig: |