aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/util.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-02-04 07:18:20 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-02-04 07:18:20 +0800
commit07590196a5ee1a63856f1653516da950dfa4966b (patch)
tree59803378ea0fd080bc78bf7bef0d9501938b6135 /rpc/util.go
parent4dc283c0fb5d886ce8d3638c3322af7e6f2a3b2e (diff)
parentb2b42f759c54d9d1b0ba4d9419a4c9a4bd8e4234 (diff)
downloadgo-tangerine-07590196a5ee1a63856f1653516da950dfa4966b.tar.gz
go-tangerine-07590196a5ee1a63856f1653516da950dfa4966b.tar.zst
go-tangerine-07590196a5ee1a63856f1653516da950dfa4966b.zip
Merge branch 'develop' of github.com:tgerring/go-ethereum into develop
Diffstat (limited to 'rpc/util.go')
-rw-r--r--rpc/util.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/rpc/util.go b/rpc/util.go
index bb4087c51..509d9a17d 100644
--- a/rpc/util.go
+++ b/rpc/util.go
@@ -18,10 +18,11 @@ package rpc
import (
"encoding/json"
- "github.com/ethereum/go-ethereum/logger"
"io"
"net/http"
+
"github.com/ethereum/go-ethereum/ethutil"
+ "github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/state"
)
@@ -36,7 +37,7 @@ func (self JsonWrapper) Send(writer io.Writer, v interface{}) (n int, err error)
rpclogger.Fatalln("Error marshalling JSON", err)
return 0, err
}
- rpclogger.Infof("Sending payload: %s", payload)
+ rpclogger.DebugDetailf("Sending payload: %s", payload)
return writer.Write(payload)
}