added debug API

This commit is contained in:
Bas van Kervel
2015-06-09 09:48:18 +02:00
committed by Bas van Kervel
parent faab931ce1
commit 09d0d55fc5
9 changed files with 982 additions and 714 deletions

View File

@ -3,9 +3,9 @@
package comms
import (
"io"
"io"
"net"
"os"
"os"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger/glog"
@ -70,8 +70,8 @@ func startIpc(cfg IpcConfig, codec codec.Codec, api api.EthereumApi) error {
os.Remove(cfg.Endpoint)
}()
glog.V(logger.Info).Infof("IPC service started (%s)\n", cfg.Endpoint)
glog.V(logger.Info).Infof("IPC service started (%s)\n", cfg.Endpoint)
return nil
}