github.com/cilium/cilium@v1.16.2/pkg/logging/logfields/helpers.go (about) 1 // SPDX-License-Identifier: Apache-2.0 2 // Copyright Authors of Cilium 3 4 package logfields 5 6 import ( 7 "fmt" 8 ) 9 10 // Repr formats an object with the Printf %+v formatter 11 func Repr(s interface{}) string { 12 return fmt.Sprintf("%+v", s) 13 }