From 2db7e13fdb70cbb18127fc9c3dea3b9314a7a5ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Tue, 17 Sep 2024 20:43:37 +0900 Subject: [PATCH] Automation init...3 --- app/Libraries/MyStorage/FileStorage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Libraries/MyStorage/FileStorage.php b/app/Libraries/MyStorage/FileStorage.php index 6e4f619..39c9173 100644 --- a/app/Libraries/MyStorage/FileStorage.php +++ b/app/Libraries/MyStorage/FileStorage.php @@ -59,13 +59,13 @@ class FileStorage extends MyStorage switch (getenv("mangboard.uploads.file.collision")) { case "unique": $file_name = $this->getUniqueName_FileTrait($this->getFullPath(), $this->getOriginName()); - log_message("notice", __FUNCTION__ . "파일명 변경 : 원본파일 {$this->getOriginName()}->저장파일 {$file_name}"); + log_message("notice", __FUNCTION__ . " 파일명 변경 : 원본파일 {$this->getOriginName()}->저장파일 {$file_name}"); $this->setOriginName($file_name); $save_file = $this->getFullPath() . DIRECTORY_SEPARATOR . $this->getOriginName(); break; case "notallow": default: - throw new \Exception(__FUNCTION__ . "{$this->getOriginName()}는 이미 존재하는 파일입니다."); + throw new \Exception(__FUNCTION__ . " {$this->getOriginName()} 는 이미 존재하는 파일입니다."); // break; } }