我可以将记录器对象解析为另一个Python文件吗?

时间:2018-09-20 10:55:04

标签: python-3.x logging subprocess command-line-arguments

我在主Python文件中创建了logger,然后调用了另一个文件,我想解析 记录到该文件,这可能吗?还有其他方法可以做这样的过程吗?

# main.py
logger = logging.getLogger('log')
....
another_python_file = 'another.py -d -l ' + logger  ## Here how to do??
subprocess.call(another_python_file, shell=True)`

0 个答案:

没有答案