' . $logFile . '
';
if (!file_exists($logFile)) {
$msg .= 'No log file found on that location';
} else {
$log = file_get_contents($logFile);
if ($log === false) {
$msg .= 'Could not read log file';
} else {
$msg .= nl2br($log);
}
}
//$log = $source;
//file_get_contents
echo json_encode($msg, JSON_UNESCAPED_SLASHES | JSON_NUMERIC_CHECK | JSON_PRETTY_PRINT);
*/
wp_die();
}
}