|
@@ -30,6 +30,7 @@ type Device struct {
|
|
|
type CompileHandler struct{}
|
|
|
|
|
|
func (h *CompileHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
+ c_log.GlobalLogger.Error("CompileHandler 开始处理。")
|
|
|
|
|
|
// 1 校验参数
|
|
|
queryParams := r.URL.Query()
|
|
@@ -112,8 +113,8 @@ func (h *CompileHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
// PjiCompileHandler implements http.Handler
|
|
|
type PjiCompileHandler struct{}
|
|
|
|
|
|
-func (h *PjiCompileHandler) ServeHTTP2(w http.ResponseWriter, r *http.Request) {
|
|
|
-
|
|
|
+func (h *PjiCompileHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
+ c_log.GlobalLogger.Error("PjiCompileHandler 开始处理。")
|
|
|
// 1 校验参数
|
|
|
queryParams := r.URL.Query()
|
|
|
goObjectKey := queryParams.Get("goObjectKey")
|