From 7e810b0279a88aba4b9fee24610fa3ac6f18ad4f Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sun, 7 Sep 2025 06:01:04 +0000 Subject: [PATCH] =?UTF-8?q?LogText=20=EB=81=84=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/lib.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hwe/lib.php b/hwe/lib.php index 58f42119..01c55e59 100644 --- a/hwe/lib.php +++ b/hwe/lib.php @@ -51,8 +51,9 @@ function MessageBox($str) function LogText($prefix, $variable) { - $text = sprintf('%s : %s'."\r\n", $prefix, TVarDumper::dump($variable)); - file_put_contents(ROOT.'/d_log/'.UniqueConst::$serverName.'_dbg_logs.txt', $text, FILE_APPEND); + return; + //$text = sprintf('%s : %s'."\r\n", $prefix, TVarDumper::dump($variable)); + //file_put_contents(ROOT.'/d_log/'.UniqueConst::$serverName.'_dbg_logs.txt', $text, FILE_APPEND); } function prepareDir(string $dirPath, bool $forceCreate=true):bool{