[issue41433] Logging libraries BufferingHandler flushed twice at shutdown

2021-01-11 Thread Irit Katriel
Irit Katriel added the comment: I'm assuming the link solved your issue. If you are still having a problem please create a new issue, and include a code snippet to show what you are doing exactly. -- resolution: -> not a bug stage: -> resolved status: open -> closed

[issue41433] Logging libraries BufferingHandler flushed twice at shutdown

2020-10-19 Thread Irit Katriel
Irit Katriel added the comment: adamist521, is your issue resolved by now? Does calling flush() on super help? If not, can you please provide a script demonstrating the problem? -- ___ Python tracker

[issue41433] Logging libraries BufferingHandler flushed twice at shutdown

2020-08-07 Thread Irit Katriel
Irit Katriel added the comment: I think this may be the same issue as in: https://stackoverflow.com/questions/47549602/logging-handlers-bufferinghandler-subclassed-handler-showing-log-twice Did you call flush on super()? If this is not the same issue, please post a code snippet to explain

[issue41433] Logging libraries BufferingHandler flushed twice at shutdown

2020-07-29 Thread Tatsunosuke Shimada
Tatsunosuke Shimada added the comment: Found related issue. https://bugs.python.org/issue901330 -- ___ Python tracker ___ ___

[issue41433] Logging libraries BufferingHandler flushed twice at shutdown

2020-07-28 Thread Tatsunosuke Shimada
New submission from Tatsunosuke Shimada : BufferingHandler I expected function flush of BufferingHandler called once but it is called twice. This is due to that shutdown calls flush before close function which calls flush function inside. (Faced this issue on my custom implementation of