diff options
author | ethersphere <thesw@rm.eth> | 2018-06-20 20:06:27 +0800 |
---|---|---|
committer | ethersphere <thesw@rm.eth> | 2018-06-22 03:10:31 +0800 |
commit | e187711c6545487d4cac3701f0f506bb536234e2 (patch) | |
tree | d2f6150f70b84b36e49a449082aeda267b4b9046 /swarm/log/log.go | |
parent | 574378edb50c907b532946a1d4654dbd6701b20a (diff) | |
download | go-tangerine-e187711c6545487d4cac3701f0f506bb536234e2.tar go-tangerine-e187711c6545487d4cac3701f0f506bb536234e2.tar.gz go-tangerine-e187711c6545487d4cac3701f0f506bb536234e2.tar.bz2 go-tangerine-e187711c6545487d4cac3701f0f506bb536234e2.tar.lz go-tangerine-e187711c6545487d4cac3701f0f506bb536234e2.tar.xz go-tangerine-e187711c6545487d4cac3701f0f506bb536234e2.tar.zst go-tangerine-e187711c6545487d4cac3701f0f506bb536234e2.zip |
swarm: network rewrite merge
Diffstat (limited to 'swarm/log/log.go')
-rw-r--r-- | swarm/log/log.go | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/swarm/log/log.go b/swarm/log/log.go new file mode 100644 index 000000000..ce372632e --- /dev/null +++ b/swarm/log/log.go @@ -0,0 +1,48 @@ +package log + +import ( + l "github.com/ethereum/go-ethereum/log" + "github.com/ethereum/go-ethereum/metrics" +) + +const ( + // CallDepth is set to 1 in order to influence to reported line number of + // the log message with 1 skipped stack frame of calling l.Output() + CallDepth = 1 +) + +// Warn is a convenient alias for log.Warn with stats +func Warn(msg string, ctx ...interface{}) { + metrics.GetOrRegisterCounter("warn", nil).Inc(1) + l.Output(msg, l.LvlWarn, CallDepth, ctx...) +} + +// Error is a convenient alias for log.Error with stats +func Error(msg string, ctx ...interface{}) { + metrics.GetOrRegisterCounter("error", nil).Inc(1) + l.Output(msg, l.LvlError, CallDepth, ctx...) +} + +// Crit is a convenient alias for log.Crit with stats +func Crit(msg string, ctx ...interface{}) { + metrics.GetOrRegisterCounter("crit", nil).Inc(1) + l.Output(msg, l.LvlCrit, CallDepth, ctx...) +} + +// Info is a convenient alias for log.Info with stats +func Info(msg string, ctx ...interface{}) { + metrics.GetOrRegisterCounter("info", nil).Inc(1) + l.Output(msg, l.LvlInfo, CallDepth, ctx...) +} + +// Debug is a convenient alias for log.Debug with stats +func Debug(msg string, ctx ...interface{}) { + metrics.GetOrRegisterCounter("debug", nil).Inc(1) + l.Output(msg, l.LvlDebug, CallDepth, ctx...) +} + +// Trace is a convenient alias for log.Trace with stats +func Trace(msg string, ctx ...interface{}) { + metrics.GetOrRegisterCounter("trace", nil).Inc(1) + l.Output(msg, l.LvlTrace, CallDepth, ctx...) +} |