We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
When using a transport is there a way to get the msg to be formatted like the message is when it's logged to the console.
In the transport i will get something like args = ["some message %s", 207] msg = "[app:log] some message %s 207"
["some message %s", 207]
"[app:log] some message %s 207"
And what is printed to the console is app:log some message 207 where 207 replaces the %s format character.
app:log some message 207
%s
In the transport i want to be able to send the formatted message to sentry breadcrumbs.
Is that possible?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using a transport is there a way to get the msg to be formatted like the message is when it's logged to the console.
In the transport i will get something like
args =
["some message %s", 207]
msg =
"[app:log] some message %s 207"
And what is printed to the console is
app:log some message 207
where 207 replaces the%s
format character.In the transport i want to be able to send the formatted message to sentry breadcrumbs.
Is that possible?
The text was updated successfully, but these errors were encountered: