Browse Source

update linter settings

pull/169/head
aler9 6 years ago
parent
commit
692b236c6c
  1. 3
      .golangci.yml
  2. 4
      internal/logger/logger.go

3
.golangci.yml

@ -6,3 +6,6 @@ linters:
- gofmt - gofmt
- golint - golint
- misspell - misspell
issues:
exclude-use-default: false

4
internal/logger/logger.go

@ -13,14 +13,13 @@ import (
// Level is a log level. // Level is a log level.
type Level int type Level int
// Log levels.
const ( const (
Debug Level = iota Debug Level = iota
Info Info
Warn Warn
) )
// Log levels.
// Destination is a log destination. // Destination is a log destination.
type Destination int type Destination int
@ -102,6 +101,7 @@ func itoa(buf *[]byte, i int, wid int) {
*buf = append(*buf, b[bp:]...) *buf = append(*buf, b[bp:]...)
} }
// Log writes a log entry.
func (lh *Logger) Log(level Level, format string, args ...interface{}) { func (lh *Logger) Log(level Level, format string, args ...interface{}) {
if level < lh.level { if level < lh.level {
return return

Loading…
Cancel
Save