payment gateway for rpn cn
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 line
184B

  1. package main
  2. import (
  3. "fmt"
  4. "log"
  5. )
  6. func logRequestDebug(data []byte, err error) {
  7. if err == nil {
  8. fmt.Printf("%s\n\n", string(data))
  9. } else {
  10. log.Fatalf("%s\n\n", err)
  11. }
  12. }