diff --git a/go/route.go b/go/route.go index d103e42a0..267aec2da 100644 --- a/go/route.go +++ b/go/route.go @@ -116,6 +116,7 @@ func downloadHandler(c *gin.Context) { c.String(400, ErrorInvalidData+": file path is empty") return } + logrus.Info("download file: ", string(filePath)) filename := filepath.Base(string(filePath)) c.Header("file-name", filename) c.File(string(filePath))