This commit is contained in:
Roman Kelesidis 2023-10-19 23:07:05 +07:00
parent 1546a5ff58
commit b1947e0a1d
3 changed files with 3 additions and 3 deletions

View File

@ -169,7 +169,7 @@ function drop_fast_announce ($lp_info)
function msg_die ($msg) function msg_die ($msg)
{ {
if (DBG_LOG_TRACKER) dbg_log($msg, '!die-' . $msg . time()); if (DBG_LOG_TRACKER) dbg_log($msg, '!die-' . $msg . '_' . time());
$output = bencode(array( $output = bencode(array(
# 'interval' => (int) 1800, # 'interval' => (int) 1800,

View File

@ -42,7 +42,7 @@ function silent_exit ()
function error_exit ($msg = '') function error_exit ($msg = '')
{ {
if (DBG_LOG_TRACKER) dbg_log($msg, '!err-' . $msg . time()); if (DBG_LOG_TRACKER) dbg_log($msg, '!err-' . $msg . '_' . time());
silent_exit(); silent_exit();

View File

@ -21,7 +21,7 @@ $info_hash = $_GET['info_hash'];
function msg_die ($msg) function msg_die ($msg)
{ {
if (DBG_LOG_TRACKER) dbg_log($msg, '!die-' . $msg . time()); if (DBG_LOG_TRACKER) dbg_log($msg, '!die-' . $msg . '_' . time());
$output = bencode(array( $output = bencode(array(
'min interval' => (int) 1800, 'min interval' => (int) 1800,