logsystem.go 2.09 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Copyright 2015 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// go-ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with go-ethereum.  If not, see <http://www.gnu.org/licenses/>.

17 18 19 20 21 22 23 24
package logger

import (
	"io"
	"log"
	"sync/atomic"
)

Taylor Gerring's avatar
Taylor Gerring committed
25 26 27
// LogSystem is implemented by log output devices.
// All methods can be called concurrently from multiple goroutines.
type LogSystem interface {
28
	LogPrint(LogMsg)
Taylor Gerring's avatar
Taylor Gerring committed
29 30
}

31 32
// NewStdLogSystem creates a LogSystem that prints to the given writer.
// The flag values are defined package log.
zelig's avatar
zelig committed
33
func NewStdLogSystem(writer io.Writer, flags int, level LogLevel) *StdLogSystem {
34
	logger := log.New(writer, "", flags)
zelig's avatar
zelig committed
35
	return &StdLogSystem{logger, uint32(level)}
36 37
}

zelig's avatar
zelig committed
38
type StdLogSystem struct {
39 40 41 42
	logger *log.Logger
	level  uint32
}

zelig's avatar
zelig committed
43
func (t *StdLogSystem) LogPrint(msg LogMsg) {
44 45 46 47 48 49
	stdmsg, ok := msg.(stdMsg)
	if ok {
		if t.GetLogLevel() >= stdmsg.Level() {
			t.logger.Print(stdmsg.String())
		}
	}
50 51
}

zelig's avatar
zelig committed
52
func (t *StdLogSystem) SetLogLevel(i LogLevel) {
53 54 55
	atomic.StoreUint32(&t.level, uint32(i))
}

zelig's avatar
zelig committed
56
func (t *StdLogSystem) GetLogLevel() LogLevel {
57 58
	return LogLevel(atomic.LoadUint32(&t.level))
}
Taylor Gerring's avatar
Taylor Gerring committed
59

60 61 62
// NewJSONLogSystem creates a LogSystem that prints to the given writer without
// adding extra information irrespective of loglevel only if message is JSON type
func NewJsonLogSystem(writer io.Writer) LogSystem {
Taylor Gerring's avatar
Taylor Gerring committed
63
	logger := log.New(writer, "", 0)
64
	return &jsonLogSystem{logger}
Taylor Gerring's avatar
Taylor Gerring committed
65 66 67 68 69 70
}

type jsonLogSystem struct {
	logger *log.Logger
}

71 72 73 74 75
func (t *jsonLogSystem) LogPrint(msg LogMsg) {
	jsonmsg, ok := msg.(jsonMsg)
	if ok {
		t.logger.Print(jsonmsg.String())
	}
Taylor Gerring's avatar
Taylor Gerring committed
76
}