@ -53,7 +53,7 @@ public class BlobInsert {
}
double size = Math.ceil(file.length()/1024.0 * 10)/10;
if(size > 300.0){
throw BizRuntimeException.create(String.format("파일 크기 %s[템플릿 파일 크기는 300kb를 넘을 수 없습니다]", String.valueOf(size)));
throw BizRuntimeException.create(String.format("파일 크기 %s[템플릿 파일 크기는 300kb를 넘을 수 없습니다]", size));
try (InputStream inputStream = new FileInputStream(file)) {