Fix panic with log.file=eventlog

Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
This commit is contained in:
Jan-Otto Kröpke 2023-07-21 20:18:15 +02:00
parent f068cf4523
commit 44b435e7d4
No known key found for this signature in database
1 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,7 @@ func (f *AllowedFile) String() string {
// Set updates the value of the allowed format.
func (f *AllowedFile) Set(s string) error {
f.s = s
switch s {
case "stdout":
f.w = os.Stdout
@ -77,6 +78,8 @@ func New(config *Config) (log.Logger, error) {
return nil, err
}
l = eventlog.NewEventLogLogger(w, loggerFunc)
} else if config.File.w == nil {
panic("logger: file writer is nil")
} else {
l = loggerFunc(log.NewSyncWriter(config.File.w))
}