chore: add logging for image copy process

Added log message to indicate successful copying of the original image to EXHAUST_PATH.
This commit is contained in:
wood chen 2024-10-23 03:43:40 +08:00
parent d17cfc7a3c
commit 97cc9b5aa3

View File

@ -312,6 +312,7 @@ func ProcessAndSaveImage(rawImageAbs, exhaustFilename string, extraParams config
log.Errorf("复制原图到 EXHAUST_PATH 失败: %v", err)
return err
}
log.Infof("成功将原图复制到 EXHAUST_PATH: %s", exhaustFilename)
} else {
log.Infof("图像处理成功: 目标文件=%s", exhaustFilename)
}