From 83751442918b24c94398a9365dee64a2d1f00c7e Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Mon, 20 Nov 2023 16:11:46 +0700 Subject: [PATCH] Update init_tr.php --- bt/includes/init_tr.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bt/includes/init_tr.php b/bt/includes/init_tr.php index 48e7dff5..6dde33fd 100644 --- a/bt/includes/init_tr.php +++ b/bt/includes/init_tr.php @@ -414,7 +414,7 @@ class sql_db if (SQL_LOG_SLOW_QUERIES && $this->sql_last_time > $this->slow_time) { $q_time = ($this->sql_last_time >= 10) ? round($this->sql_last_time, 0) : sprintf('%.4f', $this->sql_last_time); - $msg = round($this->sql_starttime); + $msg = round($this->sql_starttime) . LOG_SEPR; $msg .= date('m-d H:i:s', $this->sql_starttime) . LOG_SEPR; $msg .= sprintf('%-6s', $q_time); $msg .= LOG_SEPR . sprintf('%-4s', round(sys('la'), 1));