Capturing All Log Messages for Sentry Breadcrumbs While Respecting Current Log Level

Is there a built in way to add a logger that will receive all log messages regardless of the current log level? For example I might want to add all logs as breadcrumbs to sentry but only actually print at the current log level. It seems logs get filtered by level before they get to the logger implementation. I don't see any API to let me do this. I suppose I could make a custom log level fiber ref but that might be a lot less convenient than using built in log level utilities.
Was this page helpful?