mirror of
https://github.com/unidoc/unipdf.git
synced 2025-05-05 19:30:30 +08:00
86 lines
2.0 KiB
Go
86 lines
2.0 KiB
Go
/*
|
|
* This file is subject to the terms and conditions defined in
|
|
* file 'LICENSE.md', which is part of this source code package.
|
|
*/
|
|
|
|
package common
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"runtime"
|
|
)
|
|
|
|
type Logger interface {
|
|
Error(format string, args ...interface{})
|
|
Warning(format string, args ...interface{})
|
|
Notice(format string, args ...interface{})
|
|
Info(format string, args ...interface{})
|
|
Debug(format string, args ...interface{})
|
|
}
|
|
|
|
// Dummy Logger does nothing.
|
|
type DummyLogger struct{}
|
|
|
|
func (this DummyLogger) Error(format string, args ...interface{}) {
|
|
}
|
|
|
|
func (this DummyLogger) Warning(format string, args ...interface{}) {
|
|
}
|
|
|
|
func (this DummyLogger) Notice(format string, args ...interface{}) {
|
|
}
|
|
|
|
func (this DummyLogger) Info(format string, args ...interface{}) {
|
|
}
|
|
|
|
func (this DummyLogger) Debug(format string, args ...interface{}) {
|
|
}
|
|
|
|
// Simple Console Logger that the tests use.
|
|
type ConsoleLogger struct{}
|
|
|
|
const DebugOutput = false
|
|
|
|
func (this ConsoleLogger) Error(format string, args ...interface{}) {
|
|
this.output(os.Stderr, "[ERROR] ", format, args...)
|
|
}
|
|
|
|
func (this ConsoleLogger) Warning(format string, args ...interface{}) {
|
|
this.output(os.Stdout, "[WARNING] ", format, args...)
|
|
}
|
|
|
|
func (this ConsoleLogger) Notice(format string, args ...interface{}) {
|
|
this.output(os.Stdout, "[NOTICE] ", format, args...)
|
|
}
|
|
|
|
func (this ConsoleLogger) Info(format string, args ...interface{}) {
|
|
this.output(os.Stdout, "[INFO] ", format, args...)
|
|
}
|
|
|
|
func (this ConsoleLogger) Debug(format string, args ...interface{}) {
|
|
if DebugOutput {
|
|
this.output(os.Stdout, "[DEBUG] ", format, args...)
|
|
}
|
|
}
|
|
|
|
func (this ConsoleLogger) output(f *os.File, prefix, format string, args ...interface{}) {
|
|
_, file, line, ok := runtime.Caller(3)
|
|
if !ok {
|
|
file = "???"
|
|
line = 0
|
|
} else {
|
|
file = filepath.Base(file)
|
|
}
|
|
src := fmt.Sprintf("%s%s:%d ", prefix, file, line) + format + "\n"
|
|
fmt.Fprintf(f, src, args...)
|
|
}
|
|
|
|
var Log Logger = DummyLogger{}
|
|
|
|
func SetLogger(logger Logger) {
|
|
Log = logger
|
|
fmt.Printf("SetLogger: logger=%+v\n", logger)
|
|
}
|