From 4ece0454cd178758813bc9a6d1da3e2d6b085f16 Mon Sep 17 00:00:00 2001 From: Denis Isaev Date: Mon, 18 Feb 2019 13:36:48 +0300 Subject: [PATCH] test suggested changes --- .golangci.yml | 5 ++++- internal/shared/logutil/log.go | 10 ++++++---- internal/shared/logutil/stderr_log.go | 1 + 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index e1bcec8f..95a9f0d1 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -27,8 +27,11 @@ linters: - gochecknoinits - scopelint - dupl + - typecheck # golangci.com configuration # https://github.com/golangci/golangci/wiki/Configuration service: - golangci-lint-version: 1.13.x # use fixed version to not introduce new linters unexpectedly + golangci-lint-version: 1.15.x # use fixed version to not introduce new linters unexpectedly + # suggested-changes: + # disabled: true diff --git a/internal/shared/logutil/log.go b/internal/shared/logutil/log.go index 258b3406..893a2226 100644 --- a/internal/shared/logutil/log.go +++ b/internal/shared/logutil/log.go @@ -3,9 +3,9 @@ package logutil type Func func(format string, args ...interface{}) type Log interface { - Fatalf(format string, args ...interface{}) - Errorf(format string, args ...interface{}) - Warnf(format string, args ...interface{}) +Fatalf(format string, args ...interface{}) +Errorf(format string, args ...interface{}) +Warnf(format string, args ...interface{}) Infof(format string, args ...interface{}) Debugf(key string, format string, args ...interface{}) @@ -15,6 +15,7 @@ type Log interface { type LogLevel int +// setup levellign const ( // debug message, write to debug logs only by logutils.Debug LogLevelDebug LogLevel = 0 @@ -29,5 +30,6 @@ const ( // only not hidden from user errors: whole program failing, usually // error logging happens in 1-2 places: in the "main" function. - LogLevelError LogLevel = 3 + LogLevelError LogLevel = 3 ) + diff --git a/internal/shared/logutil/stderr_log.go b/internal/shared/logutil/stderr_log.go index a42ffffa..9ff62dbd 100644 --- a/internal/shared/logutil/stderr_log.go +++ b/internal/shared/logutil/stderr_log.go @@ -3,6 +3,7 @@ package logutil import ( "fmt" "os" + "os/exec" "github.com/golangci/golangci-lint/pkg/exitcodes" "github.com/sirupsen/logrus" //nolint:depguard