标签: 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)`