Python Forum

Full Version: import logging not working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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 code
Error:
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'
your own script is named logging.py, thus overriding the module with that name from Standard Library. Rename your script.
Im still getting this
Error:
Traceback (most recent call last): File "H:\New folder\log_test1.py", line 1, in <module> import logging ImportError: bad magic number in 'logging': b'\x03\xf3\r\n'
Check this for the solution
https://stackoverflow.com/a/514395/4046632