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; } }