mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-13 05:11:21 +00:00
log: Tm -> TM
This commit is contained in:
committed by
Anton Kaliaev
parent
ed76afd409
commit
66c9401c07
@ -34,13 +34,13 @@ type tmfmtLogger struct {
|
||||
w io.Writer
|
||||
}
|
||||
|
||||
// NewTmFmtLogger returns a logger that encodes keyvals to the Writer in
|
||||
// NewTMFmtLogger returns a logger that encodes keyvals to the Writer in
|
||||
// Tendermint custom format.
|
||||
//
|
||||
// Each log event produces no more than one call to w.Write.
|
||||
// The passed Writer must be safe for concurrent use by multiple goroutines if
|
||||
// the returned Logger will be used concurrently.
|
||||
func NewTmfmtLogger(w io.Writer) kitlog.Logger {
|
||||
func NewTMFmtLogger(w io.Writer) kitlog.Logger {
|
||||
return &tmfmtLogger{w}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user