mirror of
https://github.com/safing/portbase
synced 2025-09-01 18:19:57 +00:00
172 lines
2.9 KiB
Go
172 lines
2.9 KiB
Go
// Copyright Safing ICS Technologies GmbH. Use of this source code is governed by the AGPL license that can be found in the LICENSE file.
|
|
|
|
package log
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
"strings"
|
|
"sync/atomic"
|
|
"time"
|
|
)
|
|
|
|
func fastcheck(level severity) bool {
|
|
if fileLevelsActive.IsSet() {
|
|
return true
|
|
}
|
|
if uint32(level) < atomic.LoadUint32(logLevel) {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func log(level severity, msg string) {
|
|
|
|
if !started.IsSet() {
|
|
// a bit resouce intense, but keeps logs before logging started.
|
|
go func(){
|
|
<-startedSignal
|
|
log(level, msg)
|
|
}()
|
|
return
|
|
}
|
|
|
|
// check if level is enabled
|
|
if !fileLevelsActive.IsSet() && uint32(level) < atomic.LoadUint32(logLevel) {
|
|
return
|
|
}
|
|
|
|
// get time
|
|
now := time.Now()
|
|
|
|
// get file and line
|
|
_, file, line, ok := runtime.Caller(2)
|
|
if !ok {
|
|
file = ""
|
|
line = 0
|
|
} else {
|
|
if len(file) > 3 {
|
|
file = file[:len(file)-3]
|
|
} else {
|
|
file = ""
|
|
}
|
|
}
|
|
|
|
// check if level is enabled for file or generally
|
|
if fileLevelsActive.IsSet() {
|
|
fileOnly := strings.Split(file, "/")
|
|
sev, ok := fileLevels[fileOnly[len(fileOnly)-1]]
|
|
if ok {
|
|
if level < sev {
|
|
return
|
|
}
|
|
} else {
|
|
if uint32(level) < atomic.LoadUint32(logLevel) {
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
// create log object
|
|
log := &logLine{
|
|
msg,
|
|
level,
|
|
now,
|
|
file,
|
|
line,
|
|
}
|
|
|
|
// send log to processing
|
|
select {
|
|
case logBuffer <- log:
|
|
default:
|
|
forceEmptyingOfBuffer <- true
|
|
logBuffer <- log
|
|
}
|
|
|
|
// wake up writer if necessary
|
|
if logsWaitingFlag.SetToIf(false, true) {
|
|
logsWaiting <- true
|
|
}
|
|
|
|
}
|
|
|
|
func Tracef(things ...interface{}) {
|
|
if fastcheck(TraceLevel) {
|
|
log(TraceLevel, fmt.Sprintf(things[0].(string), things[1:]...))
|
|
}
|
|
}
|
|
|
|
func Trace(msg string) {
|
|
if fastcheck(TraceLevel) {
|
|
log(TraceLevel, msg)
|
|
}
|
|
}
|
|
|
|
func Debugf(things ...interface{}) {
|
|
if fastcheck(DebugLevel) {
|
|
log(DebugLevel, fmt.Sprintf(things[0].(string), things[1:]...))
|
|
}
|
|
}
|
|
|
|
func Debug(msg string) {
|
|
if fastcheck(DebugLevel) {
|
|
log(DebugLevel, msg)
|
|
}
|
|
}
|
|
|
|
func Infof(things ...interface{}) {
|
|
if fastcheck(InfoLevel) {
|
|
log(InfoLevel, fmt.Sprintf(things[0].(string), things[1:]...))
|
|
}
|
|
}
|
|
|
|
func Info(msg string) {
|
|
if fastcheck(InfoLevel) {
|
|
log(InfoLevel, msg)
|
|
}
|
|
}
|
|
|
|
func Warningf(things ...interface{}) {
|
|
if fastcheck(WarningLevel) {
|
|
log(WarningLevel, fmt.Sprintf(things[0].(string), things[1:]...))
|
|
}
|
|
}
|
|
|
|
func Warning(msg string) {
|
|
if fastcheck(WarningLevel) {
|
|
log(WarningLevel, msg)
|
|
}
|
|
}
|
|
|
|
func Errorf(things ...interface{}) {
|
|
if fastcheck(ErrorLevel) {
|
|
log(ErrorLevel, fmt.Sprintf(things[0].(string), things[1:]...))
|
|
}
|
|
}
|
|
|
|
func Error(msg string) {
|
|
if fastcheck(ErrorLevel) {
|
|
log(ErrorLevel, msg)
|
|
}
|
|
}
|
|
|
|
func Criticalf(things ...interface{}) {
|
|
if fastcheck(CriticalLevel) {
|
|
log(CriticalLevel, fmt.Sprintf(things[0].(string), things[1:]...))
|
|
}
|
|
}
|
|
|
|
func Critical(msg string) {
|
|
if fastcheck(CriticalLevel) {
|
|
log(CriticalLevel, msg)
|
|
}
|
|
}
|
|
|
|
func Testf(things ...interface{}) {
|
|
fmt.Printf(things[0].(string), things[1:]...)
|
|
}
|
|
|
|
func Test(msg string) {
|
|
fmt.Println(msg)
|
|
}
|