';
echo '
' . __( 'Fix problems with the plugin by debugging it here. It will log to a file in your cache directory.', 'wp-super-cache' ) . '
';
// $wp_cache_debug_log is declared when this file is included.
// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UndefinedVariable
if ( ! isset( $wp_cache_debug_log ) || $wp_cache_debug_log == '' ) {
extract( wpsc_create_debug_log() ); // $wp_cache_debug_log, $wp_cache_debug_username
}
// $cache_path and $wp_cache_debug_log is declared when this file is included.
// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UndefinedVariable
$log_file_link = "
$wp_cache_debug_log";
if ( $wp_super_cache_debug == 1 ) {
echo "
" . sprintf( __( 'Currently logging to: %s', 'wp-super-cache' ), $log_file_link ) . "
";
} else {
echo "
" . sprintf( __( 'Last Logged to: %s', 'wp-super-cache' ), $log_file_link ) . "
";
}
echo "
" . sprintf( __( 'Username/Password: %s', 'wp-super-cache' ), $wp_cache_debug_username ) . "
";
echo '
";
echo '
";
echo '
';
echo '