Re-enabling a logger

2009-10-22 Thread jorma kala
Hi,
I'm using the logging module.
At one point in my code I disable logging like this:

logging.disable(logging.INFO)

But how can I enable the logging again further on?

I've tried the following, which doesn't work for re-enabling the logger:

my_logger.setLevel(logging.INFO)

I've also tried to disable the logger by doin this:

 my_logger.setLevel(logging.NOTSET)

and then re-enabling like this:

my_logger.setLevel(logging.INFO)

But that doesnt work either.

Can you tell me how to re-enable the logging?
Many thanks.
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Re-enabling a logger

2009-10-22 Thread Jean-Michel Pichavant

jorma kala wrote:

Hi,
I'm using the logging module.
At one point in my code I disable logging like this:
 
logging.disable(logging.INFO)
 
But how can I enable the logging again further on?
 
I've tried the following, which doesn't work for re-enabling the logger:
 
my_logger.setLevel(logging.INFO)
 
I've also tried to disable the logger by doin this:
 
 my_logger.setLevel(logging.NOTSET)
 
and then re-enabling like this:
 
my_logger.setLevel(logging.INFO)
 
But that doesnt work either.
 
Can you tell me how to re-enable the logging?

Many thanks.

logging.disable(0)


JM


--
http://mail.python.org/mailman/listinfo/python-list