Skip to content

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

ParameterTypeDescription
$messagestringFailure detail.
$linesarray<int, array<string, mixed>>The lines that were not stored.

Fires in

Example

boolean_smtp_debug_log_error.php
add_action( 'boolean_smtp_debug_log_error', function ( string $message, array $lines ) {
// React to the event.
}, 10, 2 );

Next steps