| Current Path : /home/wirbesti/public_html/php/ |
| Current File : /home/wirbesti/public_html/php/debug.php |
<?php
if (!function_exists('debugLog')) {
function debugLog($message) {
$logFile = '/home/wirbesti/public_html/debug.log';
$timestamp = date('Y-m-d H:i:s');
file_put_contents($logFile, "[$timestamp] $message\n", FILE_APPEND);
}
}