separate writer for wwlog.Info

Signed-off-by: Christian Goll <cgoll@suse.com>
This commit is contained in:
Christian Goll
2023-12-06 09:17:52 +01:00
committed by Jonathon Anderson
parent 6f7e85e505
commit aaadf26b90
2 changed files with 29 additions and 4 deletions

View File

@@ -125,6 +125,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Support importing containers with symlinked `/bin/sh` #797
- Don't panic on malformed passwd #527
- Update iPXE building script
- wwlog.Info|Recv|Send will go to stdout, rest to stderr
## [4.4.0] 2023-01-18

View File

@@ -52,6 +52,7 @@ var (
levelNames = []string{"NOTSET"}
logLevel = INFO
logErr io.Writer = os.Stderr
logOut io.Writer = os.Stdout
logFormatter LogFormatter = DefaultFormatter
)
@@ -153,11 +154,30 @@ func GetLogLevel() int {
Set the log output writer
By default they are set to output writer
*/
func SetLogWriter(err io.Writer) {
logErr = err
func SetLogWriter(newOut io.Writer) {
logErr = newOut
logOut = newOut
}
func GetLogWriter() io.Writer {
/*
Set the log ofr info only
*/
func SetLogWriterInfo(newOut io.Writer) {
logOut = newOut
}
/*
Set the log ofr info only
*/
func SetLogWriterErr(newOut io.Writer) {
logOut = newOut
}
func GetLogWriterInfo() io.Writer {
return logOut
}
func GetLogWriterErr() io.Writer {
return logErr
}
@@ -196,8 +216,12 @@ func LogCaller(level int, skip int, err error, message string, a ...interface{})
}
message = logFormatter(logLevel, &rec)
if level == INFO || level == RECV || level == SEND {
fmt.Fprint(logOut, message)
} else {
fmt.Fprint(logErr, message)
fmt.Fprint(logErr, message)
}
}
}