Skip to content
This repository was archived by the owner on Jun 2, 2023. It is now read-only.

Commit 0503775

Browse files
committed
test suggested changes
1 parent 4ef5aeb commit 0503775

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.golangci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ linters:
2727
- gochecknoinits
2828
- scopelint
2929
- dupl
30+
- typecheck
3031

3132
# golangci.com configuration
3233
# https://github.com/golangci/golangci/wiki/Configuration
3334
service:
34-
golangci-lint-version: 1.13.x # use fixed version to not introduce new linters unexpectedly
35+
golangci-lint-version: 1.15.x # use fixed version to not introduce new linters unexpectedly

internal/shared/logutil/log.go

+6-4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package logutil
33
type Func func(format string, args ...interface{})
44

55
type Log interface {
6-
Fatalf(format string, args ...interface{})
7-
Errorf(format string, args ...interface{})
8-
Warnf(format string, args ...interface{})
6+
Fatalf(format string, args ...interface{})
7+
Errorf(format string, args ...interface{})
8+
Warnf(format string, args ...interface{})
99
Infof(format string, args ...interface{})
1010
Debugf(key string, format string, args ...interface{})
1111

@@ -15,6 +15,7 @@ type Log interface {
1515

1616
type LogLevel int
1717

18+
// setup levellign
1819
const (
1920
// debug message, write to debug logs only by logutils.Debug
2021
LogLevelDebug LogLevel = 0
@@ -29,5 +30,6 @@ const (
2930

3031
// only not hidden from user errors: whole program failing, usually
3132
// error logging happens in 1-2 places: in the "main" function.
32-
LogLevelError LogLevel = 3
33+
LogLevelError LogLevel = 3
3334
)
35+

internal/shared/logutil/stderr_log.go

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package logutil
33
import (
44
"fmt"
55
"os"
6+
"os/exec"
67

78
"github.com/golangci/golangci-lint/pkg/exitcodes"
89
"github.com/sirupsen/logrus" //nolint:depguard

0 commit comments

Comments
 (0)