Python Forum
i am getting error while writing code for exception logging
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
i am getting error while writing code for exception logging
#1
import logging
import logging.config

logging.basicConfig(filename='mylog.txt', level=logging.ERROR)

logging.error("There isan error in the program.")
logging.critical("There is a problem in the design.")

logging.warning("The project isgoing slow.")
logging.info("You are a junior programmer.")
logging.debug("Line no. 10 conrains syntax error.")
ERROR:

Error:
Traceback (most recent call last): File "C:\Users\rahul\Desktop\Python-workspace\Test\error_log1.py", line 6, in <module> import logging File "C:\Users\rahul\Desktop\Python-workspace\Test\logging.py", line 9, in <module> logging.basicConfig(filename='mylog.txt', level=logging.ERROR) AttributeError: module 'logging' has no attribute 'basicConfig'
Reply
#2
You have file with name logging.py in the same folder as your script and it override the logging module from standard library. Rename that file to something else
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  writing and running code in vscode without saving it akbarza 1 379 Jan-11-2024, 02:59 PM
Last Post: deanhystad
  how to write exception error into logger mg24 3 978 Nov-15-2022, 04:20 PM
Last Post: insharazzak
  pywin32 Illustrator Throwing Exception Error matthewsjc1 7 5,546 Aug-27-2021, 02:43 AM
Last Post: Larz60+
  SystemError: error return without exception set!!! faryad13 3 3,643 Oct-23-2020, 02:32 PM
Last Post: ATARI_LIVE
  Help with writing or plan part of code Merlin_1 1 1,805 Aug-24-2020, 03:28 AM
Last Post: Larz60+
  Writing a basic shift code djwilson0495 2 2,254 Aug-16-2020, 01:52 PM
Last Post: djwilson0495
  code with exception arguments doen't work MaartenRo 1 1,938 Aug-09-2020, 06:06 AM
Last Post: Gribouillis
  Python logging error Mekala 2 1,932 Jun-25-2020, 04:03 AM
Last Post: Mekala
  a better way of writing code Than999 6 3,346 Jun-13-2020, 08:02 AM
Last Post: pyzyx3qwerty
  Error When Writing to SQL Table skaailet 1 1,819 Jun-10-2020, 12:01 AM
Last Post: bowlofred

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020