1
0
This repository has been archived on 2023-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
beginning-go/vendor/github.com/clockworksoul/smudge/log.go
Tony Grosinger a1e0fb3b7e
Add smudge dependency to vendor
Smudge provides an implementation of the gossip protocol that will be
used for communicating with other chat client implementations.

Retrieved at: d39c17654b
2017-10-19 19:44:45 -07:00

157 lines
3.5 KiB
Go

/*
Copyright 2016 The Smudge Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package smudge
import (
"fmt"
"os"
"time"
)
// LogLevel represents a logging levels to be used as a parameter passed to
// the SetLogThreshhold() function.
type LogLevel byte
const (
// LogAll allows all log output of all levels to be emitted.
LogAll LogLevel = iota
// LogTrace restricts log output to trace level and above.
LogTrace
// LogDebug restricts log output to debug level and above.
LogDebug
// LogInfo restricts log output to info level and above.
LogInfo
// LogWarn restricts log output to warn level and above.
LogWarn
// LogError restricts log output to error level and above.
LogError
// LogFatal restricts log output to fatal level.
LogFatal
// LogOff prevents all log output entirely.
LogOff
)
var logThreshhold = LogInfo
func (s LogLevel) String() string {
switch s {
case LogAll:
return "All"
case LogTrace:
return "Trace"
case LogDebug:
return "Debug"
case LogInfo:
return "Info"
case LogWarn:
return "Warn"
case LogError:
return "Error"
case LogFatal:
return "Fatal"
case LogOff:
return "Off"
default:
return "Unknown"
}
}
// SetLogThreshold allows the output noise level to be adjusted by setting
// the logging priority threshold.
func SetLogThreshold(level LogLevel) {
logThreshhold = level
}
func prefix(level LogLevel) string {
f := time.Now().Format("02/Jan/2006:15:04:05 MST")
return fmt.Sprintf("%5s %s -", level.String(), f)
}
func log(level LogLevel, a ...interface{}) (n int, err error) {
if level >= logThreshhold {
fmt.Fprint(os.Stdout, prefix(level)+" ")
return fmt.Fprintln(os.Stdout, a...)
}
return 0, nil
}
func logTrace(a ...interface{}) (n int, err error) {
return log(LogTrace, a...)
}
func logDebug(a ...interface{}) (n int, err error) {
return log(LogDebug, a...)
}
func logInfo(a ...interface{}) (n int, err error) {
return log(LogInfo, a...)
}
func logWarn(a ...interface{}) (n int, err error) {
return log(LogWarn, a...)
}
func logError(a ...interface{}) (n int, err error) {
return log(LogError, a...)
}
func logFatal(a ...interface{}) (n int, err error) {
return log(LogFatal, a...)
}
func logf(level LogLevel, format string, a ...interface{}) (n int, err error) {
if level >= logThreshhold {
return fmt.Fprintf(os.Stdout, prefix(level)+" "+format, a...)
}
return 0, nil
}
func logfTrace(format string, a ...interface{}) (n int, err error) {
return logf(LogTrace, format, a...)
}
func logfDebug(format string, a ...interface{}) (n int, err error) {
return logf(LogDebug, format, a...)
}
func logfInfo(format string, a ...interface{}) (n int, err error) {
return logf(LogInfo, format, a...)
}
func logfWarn(format string, a ...interface{}) (n int, err error) {
return logf(LogWarn, format, a...)
}
func logfError(format string, a ...interface{}) (n int, err error) {
return logf(LogError, format, a...)
}
func logfFatal(format string, a ...interface{}) (n int, err error) {
return logf(LogFatal, format, a...)
}