Logs
Flare can collect information about the logs being written in your application. This includes:
- The log level
- The log message
- The log context
This functionality is enabled by default, but you can disable it by ignoring the Logs
collect in config.php
:
use Spatie\FlareClient\Enums\CollectType;
'collects' => FlareConfig::defaultCollects(
ignore: [CollectType::Logs],
),
You can configure the maximum number of logs tracked while collecting data in the case of an error as follows:
'collects' => FlareConfig::defaultCollects(
extra: [
CollectType::Logs->value => [
'max_items_with_errors' => 10,
],
]
),
The collection of logs will happen automatically.