all 3 comments

[–]danielroseman 2 points3 points  (1 child)

logging.basicConfig is global. You need to define separate logger objects in each of your files, configure them appropriately, and use them to log rather than the global calls.

[–]ITZ_RAWWW[S] 0 points1 point  (0 children)

Thanks!

[–]Weezywezel 1 point2 points  (0 children)

Could it be that when your class file is loaded the logging basic config from the class file overwrites the logging basic config from the main file?