mist: update for new ethlog.LogSystem interface (in ethereum/eth-go#59)

This commit is contained in:
Felix Lange 2014-10-16 12:07:16 +02:00
parent 294b437414
commit 0a99719a39
1 changed files with 2 additions and 11 deletions

View File

@ -2,7 +2,6 @@ package main
import (
"encoding/json"
"fmt"
"os"
"strconv"
@ -18,16 +17,8 @@ type plugin struct {
Path string `json:"path"`
}
func (gui *Gui) Println(v ...interface{}) {
gui.printLog(fmt.Sprintln(v...))
}
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) {
// LogPrint writes to the GUI log.
func (gui *Gui) LogPrint(level ethlog.LogLevel, msg string) {
/*
str := strings.TrimRight(s, "\n")
lines := strings.Split(str, "\n")