|
|
@@ -117,10 +117,10 @@ public class BuildDeployController {
|
|
|
return WebResult.success(list);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "构建详细日志", description = "N")
|
|
|
+ @Operation(summary = "获取构建的日志文件", description = "N")
|
|
|
@GetMapping("/log")
|
|
|
public String buildLogPage(@RequestParam("buildLogId") String buildLogId) {
|
|
|
- String html = appBuildQuery.getBuildLogContent(buildLogId);
|
|
|
+ String html = appBuildQuery.getBuildLogFile(buildLogId);
|
|
|
return WebResult.success(html);
|
|
|
}
|
|
|
|