diff --git a/main.go b/main.go index 85bea33..83d7f5c 100644 --- a/main.go +++ b/main.go @@ -221,9 +221,10 @@ func test() { a := s.Actions[l] if !a.IsGetOnly() { - fmt.Printf(" %s - not calling - arguments needed:\n", a.Name) + fmt.Printf(" %s - not calling - arguments: variable [direction] (soap name, soap type\n", a.Name) for _, arg := range a.Arguments { - fmt.Printf(" %s [%s]\n", arg.RelatedStateVariable, arg.Direction) + sv := arg.StateVariable + fmt.Printf(" %s [%s] (%s, %s)\n", arg.RelatedStateVariable, arg.Direction, arg.Name, sv.DataType) } continue }