mirror of
https://github.com/go-gitea/gitea.git
synced 2026-08-10 05:24:18 +09:00
Enable [`forcetypeassert`](https://github.com/gostaticanalysis/forcetypeassert) linter to prevent unchecked type assertions. ~650 issues fixed, most fixes were clean, some use `setting.PanicInDevOrTesting`. The only behaviour changes are where code would previously send a 500 error or panic, a 4xx error is now emitted. Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
36 lines
830 B
Go
36 lines
830 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package log
|
|
|
|
import (
|
|
"os"
|
|
|
|
"gitea.dev/modules/util"
|
|
)
|
|
|
|
type WriterConsoleOption struct {
|
|
Stderr bool
|
|
}
|
|
|
|
type eventWriterConsole struct {
|
|
*EventWriterBaseImpl
|
|
}
|
|
|
|
var _ EventWriter = (*eventWriterConsole)(nil)
|
|
|
|
func NewEventWriterConsole(name string, mode WriterMode) EventWriter {
|
|
w := &eventWriterConsole{EventWriterBaseImpl: NewEventWriterBase(name, "console", mode)}
|
|
opt := mode.WriterOption.(WriterConsoleOption) //nolint:forcetypeassert // a console writer is only created with WriterConsoleOption
|
|
if opt.Stderr {
|
|
w.OutputWriteCloser = util.NopCloser{Writer: os.Stderr}
|
|
} else {
|
|
w.OutputWriteCloser = util.NopCloser{Writer: os.Stdout}
|
|
}
|
|
return w
|
|
}
|
|
|
|
func init() {
|
|
RegisterEventWriter("console", NewEventWriterConsole)
|
|
}
|