Dieter Maurer wrote:
> Roy Hann wrote at 2023-4-30 15:40 -:
>>Is there anyone using loguru (loguru 0.5.3 in my case) successfully in a
>>library?
>> ...
>> import mylib
>> logger.enable('mylib')
>>
>>expecting that it would report any log messages above level DEBUG, just
>>as it does when I
Roy Hann wrote at 2023-4-30 15:40 -:
>Is there anyone using loguru (loguru 0.5.3 in my case) successfully in a
>library?
> ...
> import mylib
> logger.enable('mylib')
>
>expecting that it would report any log messages above level DEBUG, just
>as it does when I don't disable logging.
Have you
MRAB wrote:
> On 2023-04-30 16:40, Roy Hann wrote:
>> Is there anyone using loguru (loguru 0.5.3 in my case) successfully in a
>> library?
>>
>>
>> In my __init__.py in mylib I do
>>
>>logger.disable('mylib')
>>
>> which definitely works. I don't get any more logging.
>>
>> I "pip install
On 2023-04-30 16:40, Roy Hann wrote:
Is there anyone using loguru (loguru 0.5.3 in my case) successfully in a
library?
In my __init__.py in mylib I do
logger.disable('mylib')
which definitely works. I don't get any more logging.
I "pip install ." the library, then in mytest.py I do
im