mirror of https://github.com/status-im/migrate.git
Fixes for unused linter
This commit is contained in:
parent
465060c9a7
commit
2758eb210f
|
@ -9,5 +9,4 @@ linters:
|
|||
disable:
|
||||
- errcheck
|
||||
- govet
|
||||
- unused
|
||||
- staticcheck
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue