Skip to content

Commit 53dba10

Browse files
authored
Disable debug output in shutdown handler
Comment out debug print statements in shutdown_handler.
1 parent fb4de1b commit 53dba10

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

web/apps/docs/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
register_shutdown_function('shutdown_handler');
1414

1515
function shutdown_handler() {
16-
print '<p>DEBUG: shutdown_handler @ ' . time() . '</p>';
16+
// print '<p>DEBUG: shutdown_handler @ ' . time() . '</p>';
1717
$error = error_get_last();
1818
if (! empty($error)) {
1919
print '<pre>' . print_r($error, true) . '</pre>';
2020
}
21-
print '<hr /><br><br><br>';
21+
// print '<hr /><br><br><br>';
2222
}
2323

2424

0 commit comments

Comments
 (0)