57d9c93dcd
* bump azure-storage-blob-go dependency to 0.3.0 release * update azure-storage-blob-go module import path * fix multiple return values on azblob.NewSharedKeyCredential * vendor: bump Azure libs to latest from upstream
15 lines
320 B
Go
15 lines
320 B
Go
package pipeline
|
|
|
|
|
|
// ForceLog should rarely be used. It forceable logs an entry to the
|
|
// Windows Event Log (on Windows) or to the SysLog (on Linux)
|
|
func ForceLog(level LogLevel, msg string) {
|
|
if !enableForceLog {
|
|
return
|
|
}
|
|
if sanitizer != nil {
|
|
msg = sanitizer.SanitizeLogMessage(msg)
|
|
}
|
|
forceLog(level, msg)
|
|
}
|