'module' object has no attribute 'basicConfig'

后端 未结 4 1677
没有蜡笔的小新
没有蜡笔的小新 2020-12-11 00:38

I have the following code, copied from the Python manual:

import logging
LOG_FILENAME = \'example.log\'
logging.basicConfig(filename=LOG_FILENAME,level=loggi         


        
相关标签:
4条回答
  • 2020-12-11 00:45

    You've got another module called logging on the python path; probably a file logging.py in the same directory. Compare print logging.__file__.

    0 讨论(0)
  • 2020-12-11 00:54

    I have faced the same attribute error while running and when checked with current working folder there are 2 filenames with logging. Delete those filenames or move to recycle bin or if imp move to different folder or change names for those logging files and run your program. It will work fine.

    0 讨论(0)
  • 2020-12-11 00:57

    Change your file name instead of logging.py absolutely it will work because I faced same problem after importing logging module name so don't give a logging name to your python file.

    0 讨论(0)
  • 2020-12-11 01:08

    You Need to Change your script name into something else rather than logging.py I guess. (You are using that name for this script aren't you?

    0 讨论(0)
提交回复
热议问题