Update deps

This commit is contained in:
Frank Denis 2023-02-15 18:42:36 +01:00
parent acc25fcefb
commit 96ffb21228
15 changed files with 124 additions and 85 deletions

View file

@ -1,6 +1,6 @@
BSD 2-Clause License
Copyright (c) 2018-2021, Frank Denis
Copyright (c) 2018-2023, Frank Denis
All rights reserved.
Redistribution and use in source and binary forms, with or without

View file

@ -28,15 +28,13 @@ type globals struct {
occurrences uint64
}
var (
_globals = globals{
logLevel: SeverityLast,
appName: "-",
lastMessage: "",
lastOccurrence: time.Now(),
occurrences: 0,
}
)
var _globals = globals{
logLevel: SeverityLast,
appName: "-",
lastMessage: "",
lastOccurrence: time.Now(),
occurrences: 0,
}
const (
SeverityDebug Severity = iota
@ -209,7 +207,7 @@ func createFileDescriptor() {
} else {
mode |= os.O_APPEND
}
outFd, err := os.OpenFile(*_globals.fileName, mode, 0644)
outFd, err := os.OpenFile(*_globals.fileName, mode, 0o644)
if err == nil {
_globals.outFd = outFd
}

View file

@ -1,3 +1,4 @@
//go:build !windows
// +build !windows
package dlog