mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 06:24:11 +01:00 
			
		
		
		
	Use stderr as fallback if the log file can't be opened (#26074)
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 ....
This commit is contained in:
		
							parent
							
								
									4b6764bbb3
								
							
						
					
					
						commit
						674df05b16
					
				@ -4,6 +4,8 @@
 | 
			
		||||
package log
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"io"
 | 
			
		||||
 | 
			
		||||
	"code.gitea.io/gitea/modules/util/rotatingfilewriter"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
@ -19,7 +21,7 @@ type WriterFileOption struct {
 | 
			
		||||
 | 
			
		||||
type eventWriterFile struct {
 | 
			
		||||
	*EventWriterBaseImpl
 | 
			
		||||
	fileWriter *rotatingfilewriter.RotatingFileWriter
 | 
			
		||||
	fileWriter io.WriteCloser
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var _ EventWriter = (*eventWriterFile)(nil)
 | 
			
		||||
@ -37,7 +39,10 @@ func NewEventWriterFile(name string, mode WriterMode) EventWriter {
 | 
			
		||||
		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 = nopCloser{Writer: LoggerToWriter(FallbackErrorf)}
 | 
			
		||||
	}
 | 
			
		||||
	w.OutputWriteCloser = w.fileWriter
 | 
			
		||||
	return w
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user