We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b9c0af commit eb4bff0Copy full SHA for eb4bff0
1 file changed
src/CoreOptions.php
@@ -422,6 +422,13 @@ public static function seedOptions(): void {
422
* @return string option value
423
*/
424
public static function getValue( string $name ): string {
425
+ $option_lookups = ( $name !== 'debugLogging' );
426
+ WsLog::l(
427
+ "Getting value of option: $name",
428
+ $level = 'debug',
429
+ $option_lookups = $option_lookups,
430
+ );
431
+
432
global $wpdb;
433
434
$opt_spec = self::optionSpecs()[ $name ];
@@ -467,6 +474,8 @@ public static function getValue( string $name ): string {
467
474
* @return string option BLOB value
468
475
469
476
public static function getBlobValue( string $name ): string {
477
+ WsLog::d( "Getting blob value of option: $name" );
478
470
479
471
480
472
481
$table_name = self::getTableName();
0 commit comments