【发布时间】:2017-10-09 12:51:50
【问题描述】:
有没有办法将 Python logging module 配置为将 Bottle templating engine 用作 Formatter?
user_table_template = '''\
Logged-in users:
% for username, session_id in user_table:
{{ username }} --> {{ session_id }}
% end
'''
logging.info(user_table_template, user_table=user_table)
【问题讨论】:
标签: python logging template-engine bottle formatter