我正在使用logging.config
作为脚本 -
[handler_fileHandler]
class=FileHandler
formatter=simpleFormatter
args=('t_deploy.log', 'a')
在我的app.py
文件中,我生成了几个变量 -
current_datetime = time.strftime("%Y%m%d-%H%M")
current_user = getpass.getuser()
如何传递这些变量以在我想要的文件夹中生成t_deploy.log
文件。
离。
"\\\blah\\location\\%s-$s" % (current_datetime, current_user)