mirror of https://github.com/status-im/op-geth.git
Merge pull request #139 from fjl/feature/simpler-log-system
Update for new ethlog.LogSystem interface
This commit is contained in:
commit
03fd832ee8
|
@ -2,7 +2,6 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
|
||||||
"os"
|
"os"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
|
@ -18,16 +17,8 @@ type plugin struct {
|
||||||
Path string `json:"path"`
|
Path string `json:"path"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gui *Gui) Println(v ...interface{}) {
|
// LogPrint writes to the GUI log.
|
||||||
gui.printLog(fmt.Sprintln(v...))
|
func (gui *Gui) LogPrint(level ethlog.LogLevel, msg string) {
|
||||||
}
|
|
||||||
|
|
||||||
func (gui *Gui) Printf(format string, v ...interface{}) {
|
|
||||||
gui.printLog(fmt.Sprintf(format, v...))
|
|
||||||
}
|
|
||||||
|
|
||||||
// Print function that logs directly to the GUI
|
|
||||||
func (gui *Gui) printLog(s string) {
|
|
||||||
/*
|
/*
|
||||||
str := strings.TrimRight(s, "\n")
|
str := strings.TrimRight(s, "\n")
|
||||||
lines := strings.Split(str, "\n")
|
lines := strings.Split(str, "\n")
|
||||||
|
|
Loading…
Reference in New Issue