[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
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 prob