func DebugLimit()

in openwhisk/debug.go [32:38]


func DebugLimit(msg string, in []byte, limit int) {
	if len(in) < limit {
		Debug("%s:%s", msg, in)
	} else {
		Debug("%s:%s...", msg, in[0:limit])
	}
}