Default log to stderr

pull/667/head
obscuren 10 years ago
parent 2e2860e4df
commit 6e2f78ebdd
  1. 3
      cmd/utils/flags.go
  2. 1
      core/transaction_pool.go

@ -231,7 +231,8 @@ func MakeEthConfig(clientID, version string, ctx *cli.Context) *eth.Config {
// Set verbosity on glog // Set verbosity on glog
glog.SetV(ctx.GlobalInt(LogLevelFlag.Name)) glog.SetV(ctx.GlobalInt(LogLevelFlag.Name))
// Set the log type // Set the log type
glog.SetToStderr(ctx.GlobalBool(LogToStdErrFlag.Name)) //glog.SetToStderr(ctx.GlobalBool(LogToStdErrFlag.Name))
glog.SetToStderr(true)
// Set the log dir // Set the log dir
glog.SetLogDir(ctx.GlobalString(LogFileFlag.Name)) glog.SetLogDir(ctx.GlobalString(LogFileFlag.Name))

@ -122,7 +122,6 @@ func (self *TxPool) add(tx *types.Transaction) error {
} }
err := self.ValidateTransaction(tx) err := self.ValidateTransaction(tx)
if err != nil { if err != nil {
self.invalidHashes.Add(tx.Hash())
return err return err
} }

Loading…
Cancel
Save