You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently if logger is passed to another package it would still show only a file name within that package.
This may cause issues with finding correct file (there may be identically named files in different packages).
It can be worked around by chaining CallerFileHandler with CallerFuncHandler. Both are lacking in functionality. CallerFuncHandler will only show function name with package name, but not file line in this function. CallerFileHandler will show file name with line, but not package.
The text was updated successfully, but these errors were encountered:
Currently if logger is passed to another package it would still show only a file name within that package.
This may cause issues with finding correct file (there may be identically named files in different packages).
It can be worked around by chaining
CallerFileHandler
withCallerFuncHandler
. Both are lacking in functionality.CallerFuncHandler
will only show function name with package name, but not file line in this function.CallerFileHandler
will show file name with line, but not package.The text was updated successfully, but these errors were encountered: