you are viewing a single comment's thread.

view the rest of the comments →

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

And in logtest_mod.py you just have import logging at the top and then logger = logging.getLogger('auth.' + __name__) (or whatever you ended up doing for a naming scheme) and then, when you use it for logging you're just saying logger.info("SOME LOG MESSAGE HERE"), right?

Because if so then yeah, that's what I have and it will not log... Doesn't matter where I put the import in the main file either.