Fixes for unused linter

This commit is contained in:
Kirill Muratov 2019-03-22 22:08:29 +03:00
parent 465060c9a7
commit 2758eb210f
2 changed files with 0 additions and 6 deletions

View File

@ -9,5 +9,4 @@ linters:
disable:
- errcheck
- govet
- unused
- staticcheck

View File

@ -30,11 +30,6 @@ func (l *Log) Verbose() bool {
return l.verbose
}
func (l *Log) fatalf(format string, v ...interface{}) {
l.Printf(format, v...)
os.Exit(1)
}
func (l *Log) fatal(args ...interface{}) {
l.Println(args...)
os.Exit(1)