I am using the logging module in python as:
import logging, sys
logger= logging.getLogger(__file__)
logging.basicConfig(stream = sys.stderr, level=logging.DEBUG, format='%(filename)s:%(lineno)s %(levelname)s:%(message)s')
logger.debug("Hello World")
Now, after I have set the basic configuration on line 3
, I want to have a command line argument that can change the output stream from sys.stderr to a file.
I have read the doc and it says that if both filename
and stream
are present at the same time, the stream
is ignored.
Now, I wanna know how do change the stream to a file after I have already done the basicConfig
thing in line 3
?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…