gitlab.com/evatix-go/core@v1.3.55/errcore/ErrPrint.go (about)

     1  package errcore
     2  
     3  import "fmt"
     4  
     5  func ErrPrint(
     6  	err error,
     7  ) {
     8  	if err != nil {
     9  		fmt.Print(err)
    10  	}
    11  }