Feb-07-2019, 04:10 PM
when i run my code it says there is somthing wrong whit import logging and thus the cod dose not work
import logging
#import time
#import mylib
# DEBUG: Detailed information, typical of intrest
# INFO: Confirmation that things are working as expected
# WARNINGS: An indication that somthing unexpected happened, or indicative of any problems
# ERORR: Due to a more serious problem, the softwear hace not been abble to perform a funktion
# CRITICAL: A incidcation of a serius error
logging.basicConfig(filename='test.log', level=logging.DEBUG,
format='%(asctime)s:%(levelname)s:%(message)s')
#class Logging:
#def __init__(self, battery, charge_of_battery):
#self.battery = battery
#self.charge_of_battery = charge_of_battery
#logging.debug('battery log:')
#def state(self):
#return '{}.{} battery lvl->'.format(self.)
logg_1 = 'error error', '123v2ecwadcsa212'
#time.sleep( 10 )
logging.debug('battery log: {}'.format(logg_1))This is the error is what is what im geting when i run the codeError:Traceback (most recent call last):
File "H:\New folder\logging.py", line 1, in <module>
import logging
File "H:\New folder\logging.py", line 15, in <module>
logging.basicConfig(filename='test.log', level=logging.DEBUG,
AttributeError: module 'logging' has no attribute 'basicConfig'
