diff options
author | Till <2353100+S7evinK@users.noreply.github.com> | 2022-08-05 11:12:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-05 11:12:41 +0200 |
commit | 1b7f84250a46b401eccb89acafdef1b379f2dbc0 (patch) | |
tree | c2b9bfd996dddda3236af6299c603d8541f5f64b /internal | |
parent | de78eab63a99653edf68f783e263688ad4b701d8 (diff) |
Fix linter issues (#2624)
* Try that again
* All hail the mighty linter?
* And once again
* goimport all the things
Diffstat (limited to 'internal')
-rw-r--r-- | internal/log.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/log.go b/internal/log.go index bba0ac6e..a171555a 100644 --- a/internal/log.go +++ b/internal/log.go @@ -27,9 +27,10 @@ import ( "github.com/matrix-org/util" - "github.com/matrix-org/dendrite/setup/config" "github.com/matrix-org/dugong" "github.com/sirupsen/logrus" + + "github.com/matrix-org/dendrite/setup/config" ) type utcFormatter struct { @@ -145,7 +146,7 @@ func setupFileHook(hook config.LogrusHook, level logrus.Level, componentName str }) } -//CloseAndLogIfError Closes io.Closer and logs the error if any +// CloseAndLogIfError Closes io.Closer and logs the error if any func CloseAndLogIfError(ctx context.Context, closer io.Closer, message string) { if closer == nil { return |