boolean_smtp_debug_log_error
Fires when a debug session could not be stored.
action Tier C Since 1.0.0
Signature
add_action( 'boolean_smtp_debug_log_error', $callback, 10, 2 );Parameters
| Parameter | Type | Description |
|---|---|---|
$message | string | Failure detail. |
$lines | array<int, array<string, mixed>> | The lines that were not stored. |
Fires in
app/Repositories/DebugLogRepository.php:128—BooleanSmtp\Repositories\DebugLogRepository::store()
Example
add_action( 'boolean_smtp_debug_log_error', function ( string $message, array $lines ) { // React to the event.}, 10, 2 );Next steps
- Internal (unstable) — every hook in this area, in firing order where that applies.
- Hook Explorer — filter and search every hook.