To log an exception in Python we can use logging module and through that we can log the error.
Logging module provides a set of functions for simple logging and for following purposes
- DEBUG
- INFO
- WARNING
- ERROR
- CRITICAL
Logging an exception in python with an error can be done in the logging.exception() method. This function logs a message with level ERROR on this logger. The arguments are interpreted as for debug(). Exception info is added to the logging message. This method should only be called from an exception handler.
See the following code for more clarity:
Example 1 :
Python3
import logging
try :
printf( "GeeksforGeeks" )
except Exception as Argument:
logging.exception( "Error occurred while printing GeeksforGeeks" )
|
Output :
ERROR:root:Error occurred while printing GeeksforGeeks
Traceback (most recent call last):
File "/home/gfg.py", line 3, in
printf("GeeksforGeeks")
NameError: name 'printf' is not defined
Example 2: We can also log the error message into a different file without showing error in the console by the following method:
Python3
import logging
try :
printf( "GeeksforGeeks" )
except Exception as Argument:
f = open ( "demofile2.txt" , "a" )
f.write( str (Argument))
f.close()
|
Error message will be stored in file name demofille2.txt in same directory as code.
Output :
Traceback (most recent call last):
File "/home/gfg.py", line 5, in
printf("GeeksforGeeks")
NameError: name 'printf' is not defined
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
29 Sep, 2021
Like Article
Save Article