diff --git a/calc.go b/calc.go index 0407d8a..dc6d97e 100644 --- a/calc.go +++ b/calc.go @@ -317,7 +317,7 @@ func (c *Calc) DoFuncall(funcname string) error { args = c.stack.Last(function.Expectargs) } - c.Debug(fmt.Sprintf("args: %v", args)) + c.Debug(fmt.Sprintf("calling %s with args: %v", funcname, args)) // the actual lambda call, so to say. We provide a slice of // the requested size, fetched from the stack (but not popped diff --git a/stack.go b/stack.go index f1a9b18..b4105f1 100644 --- a/stack.go +++ b/stack.go @@ -161,7 +161,7 @@ func (s *Stack) Dump() { } func (s *Stack) Clear() { - s.Debug("DEBUG: clearing stack") + s.Debug("clearing stack") s.linklist = list.List{} }