You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logging.basicConfig(level=logging.INFO,format='%(asctime)s:%(levelname)s:%(message)s',datefmt='%d/%m/%Y %I:%M:%S %p') #if filename is not specified default log messages will print on console
#default filemode='a' append we can change it to 'w' to overwrite
#format keyword argument to format the log messages
#To format timestamp in log messages format='%(asctime)s'
#To change date and time format datefmt='%d/%m/%Y %I or %H:%M:%S %p'