9a5720e8ad
Universal: PR Check / Branch Policy (pull_request) Successful in 1s
Branch Policy Check / Verify merge target (pull_request) Successful in 1s
PR RC Release / Build RC Release (pull_request) Successful in 3s
Universal: PR Check / Validate PR (pull_request) Failing after 6s
Branch Cleanup / Delete merged branch (pull_request) Successful in 1s
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Full namespace migration: update the Go module path and all import statements from git.mokoconsulting.tech to code.mokoconsulting.tech. Also updates all URL references in templates, workflows, configs, tests, and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
55 lines
1.5 KiB
Go
55 lines
1.5 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package log
|
|
|
|
import (
|
|
"io"
|
|
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/util"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/util/rotatingfilewriter"
|
|
)
|
|
|
|
type WriterFileOption struct {
|
|
FileName string
|
|
MaxSize int64
|
|
LogRotate bool
|
|
DailyRotate bool
|
|
MaxDays int
|
|
Compress bool
|
|
CompressionLevel int
|
|
}
|
|
|
|
type eventWriterFile struct {
|
|
*EventWriterBaseImpl
|
|
fileWriter io.WriteCloser
|
|
}
|
|
|
|
var _ EventWriter = (*eventWriterFile)(nil)
|
|
|
|
func NewEventWriterFile(name string, mode WriterMode) EventWriter {
|
|
w := &eventWriterFile{EventWriterBaseImpl: NewEventWriterBase(name, "file", mode)}
|
|
opt := mode.WriterOption.(WriterFileOption)
|
|
var err error
|
|
w.fileWriter, err = rotatingfilewriter.Open(opt.FileName, &rotatingfilewriter.Options{
|
|
Rotate: opt.LogRotate,
|
|
MaximumSize: opt.MaxSize,
|
|
RotateDaily: opt.DailyRotate,
|
|
KeepDays: opt.MaxDays,
|
|
Compress: opt.Compress,
|
|
CompressionLevel: opt.CompressionLevel,
|
|
})
|
|
if err != nil {
|
|
// if the log file can't be opened, what should it do? panic/exit? ignore logs? fallback to stderr?
|
|
// it seems that "fallback to stderr" is slightly better than others ....
|
|
FallbackErrorf("unable to open log file %q: %v", opt.FileName, err)
|
|
w.fileWriter = util.NopCloser{Writer: LoggerToWriter(FallbackErrorf)}
|
|
}
|
|
w.OutputWriteCloser = w.fileWriter
|
|
return w
|
|
}
|
|
|
|
func init() {
|
|
RegisterEventWriter("file", NewEventWriterFile)
|
|
}
|