calling methods from other modules. These modules perform log calls, from loggers created the way David mentioned: log = __import__("logging").getLogger(__name__) def func() log.info("I'm in another module") I just want to see these log messages in the console when executing the command, and I found that depending on the scope of the imports, as described in my first post, the messages are shown or not.