iris/core/logger/dev.go
kataras 74989ad0a1 Remove internal/cmd/gen, it has no use for the end-developer.
Former-commit-id: 12bead9d379c6644e391c482fe71b2e88263376c
2017-06-11 23:58:34 +03:00

51 lines
1.4 KiB
Go

// Copyright 2017 Gerasimos Maropoulos, ΓΜ. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package logger
import (
"fmt"
"io"
"strings"
"sync"
"time"
)
// NewDevLogger returns a new logger of io.Writer which
// formats its log message input and writes it
// to the os.Stdout.
func NewDevLogger(omitTimeFor ...string) io.Writer {
mu := &sync.Mutex{} // for now and last log
lastLog := time.Now()
distanceDuration := 850 * time.Millisecond
return writerFunc(func(p []byte) (int, error) {
logMessage := string(p)
for _, s := range omitTimeFor {
if strings.Contains(logMessage, s) {
n, err := fmt.Print(logMessage)
lastLog = time.Now()
return n, err
}
}
mu.Lock()
defer mu.Unlock() // "slow" but we don't care here.
nowLog := time.Now()
if nowLog.Before(lastLog.Add(distanceDuration)) {
// don't use the log.Logger to print this message
// if the last one was printed before some seconds.
n, err := fmt.Println(logMessage) // fmt because we don't want the time, dev is dev so console.
lastLog = nowLog
return n, err
}
// begin with new line in order to have the time once at the top
// and the child logs below it.
n, err := fmt.Printf("%s \u2192\n%s\n", nowLog.Format("01/02/2006 03:04:05"), logMessage)
lastLog = nowLog
return n, err
})
}