[issue37092] LoggerAdapter doesn't have fatal() like Logger

2019-05-31 Thread Vinay Sajip
Vinay Sajip added the comment: FATAL and fatal() are synonyms for CRITICAL and critical(), and they are only around because of backward compatibility constraints on the Logger class at the time logging was added to Python. Because LoggerAdapter has no backward compatibility constraints, fata

[issue37092] LoggerAdapter doesn't have fatal() like Logger

2019-05-31 Thread SilentGhost
SilentGhost added the comment: fatal is an undocumented feature, it's probably better not to use it in the first place. -- nosy: +SilentGhost, vinay.sajip versions: +Python 3.8 ___ Python tracker __

[issue37092] LoggerAdapter doesn't have fatal() like Logger

2019-05-29 Thread Dave Johansen
New submission from Dave Johansen : Using LoggerAdapter is a convenient way to add extra info to all logs, but it doesn't have the fatal() method like Logger, so it isn't a drop in replacement like it should be. -- components: Library (Lib) messages: 343941 nosy: Dave Johansen priorit