Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion platform-includes/logs/setup/php.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ To enable logging, you need to initialize the SDK with the `enable_logs` option
'enable_logs' => true,
]);

// Somewhere at the end of you execution, you should flush the logger to send pending logs to Sentry.
// Somewhere at the end of your execution, you should flush the logger to send pending logs to Sentry.
\Sentry\logger()->flush();
```
2 changes: 1 addition & 1 deletion platform-includes/logs/usage/php.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ You can pass additional attributes directly to the logging functions. These prop
'attribute4' => true,
]);

// Somewhere at the end of you execution, you should flush the logger to send pending logs to Sentry.
// Somewhere at the end of your execution, you should flush the logger to send pending logs to Sentry.
\Sentry\logger()->flush();
```
Loading