|
|
@@ -22,6 +22,7 @@ import com.alibaba.fastjson.JSONObject;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
+import java.time.LocalDateTime;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
@@ -137,6 +138,7 @@ public class PipelineServiceImpl implements PipelineService {
|
|
|
object.put("pipeline_id",pipelinePO.getId());
|
|
|
object.put("project_id",pipelinePO.getProjectId());
|
|
|
object.put("project_name",pipelinePO.getName());
|
|
|
+ object.put("log_time", LocalDateTime.now());
|
|
|
|
|
|
String data = JSONObject.toJSONString(object);
|
|
|
LogTrackingUtil.log(data, OpType.CREATE_PIPELINE);
|