feat: optimize container log

This commit is contained in:
tjq 2023-01-27 15:22:19 +08:00
parent a25eac67c7
commit c9f5fb3f51

View File

@ -60,6 +60,8 @@ public class ContainerController {
File file = containerService.fetchContainerJarFile(version);
if (file.exists()) {
OmsFileUtils.file2HttpResponse(file, response);
} else {
log.error("[Container] can't find container by version[{}], please deploy first!", version);
}
}