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
Instrument popular logging libraries to send logs to Sentry. SDK maintainers can best decide what they should support, but we should definitely support the same integrations that we do in the SDK today.
Logs can be emitted with one of the six available log levels, trace, debug, info, warn, error and fatal.
Usage without the agent looks as follows:
logger()->info('Hello, PHP!');
logger()->flush();
With the agent, users can omit the manual flush call:
https://develop.sentry.dev/sdk/telemetry/logs/
Sentry is adding support for structured logging. Let's add it to the Native SDKs!
Logs can be emitted with one of the six available log levels,
trace
,debug
,info
,warn
,error
andfatal
.Usage without the agent looks as follows:
With the agent, users can omit the manual flush call:
WIP PR #1813
The text was updated successfully, but these errors were encountered: