log.go 202 B

1234567891011
  1. package arbitrage
  2. import (
  3. "github.com/ethereum/go-ethereum/log"
  4. )
  5. func HistoryLog(msg string, ctx ...interface{}) {
  6. head := " [HistoryLog] "
  7. log.Info(head, msg, ctx)
  8. }