37243-vm/api/view-webhook-log.php
2026-01-11 01:28:40 +00:00

1 line
184 B
PHP

<?php header('Content-Type: text/plain'); $logFile = __DIR__ . '/webhook_debug.log'; if (file_exists($logFile)) { echo file_get_contents($logFile); } else { echo "No log file found"; }