Fixed logging issues
This commit is contained in:
@@ -929,9 +929,7 @@ func handleGet(swagger *openapi3.Swagger, api WorkflowApp, extraParameters []Wor
|
||||
if firstQuery {
|
||||
baseUrl = fmt.Sprintf("%s?%s={%s}", baseUrl, param.Value.Name, param.Value.Name)
|
||||
} else {
|
||||
log.Printf("NOT FIRST QUERY!: %s", baseUrl)
|
||||
baseUrl = fmt.Sprintf("%s&%s={%s}", baseUrl, param.Value.Name, param.Value.Name)
|
||||
log.Printf("AFTER: %s", baseUrl)
|
||||
}
|
||||
firstQuery = false
|
||||
}
|
||||
|
||||
@@ -1378,7 +1378,6 @@ func saveWorkflow(resp http.ResponseWriter, request *http.Request) {
|
||||
// Check tosee if the appaction is valid
|
||||
curappaction := WorkflowAppAction{}
|
||||
for _, curAction := range curapp.Actions {
|
||||
log.Printf("Same? %s - %s", action.Name, curAction.Name)
|
||||
if action.Name == curAction.Name {
|
||||
curappaction = curAction
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user