diff --git a/handler/tool.go b/handler/tool.go index fa9a3d1..1af78cf 100644 --- a/handler/tool.go +++ b/handler/tool.go @@ -10,6 +10,7 @@ import ( "fmt" "github.com/gin-gonic/gin" "io" + "log" "net/http" "os" "strconv" @@ -491,6 +492,7 @@ func CreateSparkPPTSOutline(c *gin.Context) { } var base proto.SparkCreatePPTBaseInfo base.UserID = userID + log.Println("create outline user id:", userID) outlineResp, err2 := spark.SparkDoCreateOutline(&req, &base) if err2 != nil { c.JSON(http.StatusOK, gin.H{"error": "create outline error", "code": proto.ParameterError, "message": "failed"})