PythonWin: logging module not showing messages from imported modules

2006-01-06 Thread rodrigostrauss
Having the following code: Module1.py import logging def X(): logging.error('test') If I import it into PythonWin console and call X(), the error message is not printed. If I do the same in Python console the message is printed. Do I need to configure the logging module or it's a

Re: PythonWin: logging module not showing messages from imported modules

2006-01-06 Thread jmdeschamps
[EMAIL PROTECTED] wrote: Having the following code: Module1.py import logging def X(): logging.error('test') If I import it into PythonWin console and call X(), the error message is not printed. If I do the same in Python console the message is printed. Do I need to