diff options
author | Mohammed Al Sahaf <msaa1990@gmail.com> | 2020-01-03 21:33:22 +0300 |
---|---|---|
committer | Matt Holt <mholt@users.noreply.github.com> | 2020-01-03 11:33:22 -0700 |
commit | dff78d82ce21d97cad53171b72b88550e02c2c7f (patch) | |
tree | c40db6f01dbeee0b23db1a67cd4d0e431a639071 /modules/logging | |
parent | 8c7c2e4af2e4e7ad842b959e2100855f6edadd68 (diff) |
v2: housekeeping: address minor lint complaints (#2957)
* v2: housekeeping: update tools
* v2: housekeeping: adhere to US locale in spelling
* v2: housekeeping: simplify code
Diffstat (limited to 'modules/logging')
-rw-r--r-- | modules/logging/filewriter.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/logging/filewriter.go b/modules/logging/filewriter.go index cc60c64..f17f975 100644 --- a/modules/logging/filewriter.go +++ b/modules/logging/filewriter.go @@ -96,7 +96,7 @@ func (fw FileWriter) WriterKey() string { // OpenWriter opens a new file writer. func (fw FileWriter) OpenWriter() (io.WriteCloser, error) { // roll log files by default - if fw.Roll == nil || *fw.Roll == true { + if fw.Roll == nil || *fw.Roll { if fw.RollSizeMB == 0 { fw.RollSizeMB = 100 } |