boolean_smtp_debug_mask_visible_suffix_length
Filters the number of trailing characters left visible when a value is masked.
filter Tier C Since 1.0.0
Signature
add_filter( 'boolean_smtp_debug_mask_visible_suffix_length', $callback, 10, 1 );Parameters
| Parameter | Type | Description |
|---|---|---|
$length | int | Number of visible trailing characters. Default 4. |
Returns int — The filtered length.
Fires in
app/Support/Debug/WordPressDebugLogger.php:601—BooleanSmtp\Support\Debug\WordPressDebugLogger::maskString()
Example
add_filter( 'boolean_smtp_debug_mask_visible_suffix_length', function ( int $length ) { return $length;}, 10, 1 );Next steps
- Internal (unstable) — every hook in this area, in firing order where that applies.
- Hook Explorer — filter and search every hook.