35530-vm/utils/logger.php
Flatlogic Bot 347be3952b 7
2025-11-07 18:14:24 +00:00

8 lines
236 B
PHP

<?php
function log_message($message) {
$log_file = __DIR__ . '/../logs/debug.log';
$timestamp = date('Y-m-d H:i:s');
$log_entry = "[{$timestamp}] {$message}\n";
file_put_contents($log_file, $log_entry, FILE_APPEND);
}
?>