-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
205 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.idea | ||
.vscode | ||
test | ||
sv | ||
sv | ||
bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,196 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"io" | ||
"log" | ||
"os" | ||
"runtime" | ||
"strings" | ||
"time" | ||
) | ||
|
||
var l *Logger | ||
|
||
type writer struct { | ||
io.Writer | ||
timeFormat string | ||
} | ||
|
||
func (w writer) Write(b []byte) (n int, err error) { | ||
return w.Writer.Write(append([]byte(time.Now().Format(w.timeFormat)), b...)) | ||
} | ||
|
||
const ( | ||
red = "\033[0;31;1m" | ||
yellow = "\033[0;33m" | ||
white = "\033[0;37m" | ||
cyan = "\033[0;36m" | ||
blue = "\033[0;34;1m" | ||
end = "\033[0m" | ||
) | ||
|
||
func init() { | ||
l = New() | ||
} | ||
|
||
type Logger struct { | ||
T, D, I, W, E *log.Logger | ||
t, d, i, w, e bool | ||
} | ||
|
||
func New() (l *Logger) { | ||
l = &Logger{ | ||
T: log.New(os.Stdout, "[trace]\t", log.Ltime|log.Lmicroseconds|log.Lshortfile), | ||
D: log.New(os.Stdout, "[debug]\t", log.Ltime|log.Lshortfile), | ||
I: log.New(os.Stdout, "[info]\t", log.Ldate|log.Ltime), | ||
W: log.New(os.Stdout, "[warn]\t", log.Ldate|log.Ltime), | ||
E: log.New(os.Stdout, "[error]\t", log.Ldate|log.Ltime|log.Lshortfile), | ||
t: true, | ||
d: true, | ||
i: true, | ||
w: true, | ||
e: true, | ||
} | ||
if runtime.GOOS == "linux" { | ||
l.T.SetPrefix(blue + l.T.Prefix() + end) | ||
l.D.SetPrefix(cyan + l.D.Prefix() + end) | ||
l.I.SetPrefix(white + l.I.Prefix() + end) | ||
l.W.SetPrefix(yellow + l.W.Prefix() + end) | ||
l.E.SetPrefix(red + l.E.Prefix() + end) | ||
} | ||
if strings.TrimSpace(strings.ToLower(os.Getenv("LOGGER"))) != "" { | ||
l.SetLevel(strings.TrimSpace(strings.ToLower(os.Getenv("LOGGER")))) | ||
} | ||
return | ||
} | ||
|
||
func SetOutput(w io.Writer) { | ||
l.SetOutput(w) | ||
} | ||
|
||
func SetLevel(s string) { | ||
if strings.TrimSpace(strings.ToLower(os.Getenv("LOGGER"))) != "" { | ||
return | ||
} | ||
l.SetLevel(s) | ||
} | ||
|
||
func (l *Logger) SetOutput(w io.Writer) { | ||
l.T.SetOutput(w) | ||
l.D.SetOutput(w) | ||
l.I.SetOutput(w) | ||
l.W.SetOutput(w) | ||
l.E.SetOutput(w) | ||
} | ||
|
||
func (l *Logger) SetLevel(s string) { | ||
l.t = true | ||
l.d = true | ||
l.i = true | ||
l.w = true | ||
l.e = true | ||
switch s { | ||
case "debug": | ||
l.t = false | ||
case "info": | ||
l.t = false | ||
l.d = false | ||
case "warn": | ||
l.t = false | ||
l.d = false | ||
l.i = false | ||
case "error": | ||
l.t = false | ||
l.d = false | ||
l.i = false | ||
l.w = false | ||
} | ||
} | ||
|
||
func GetLevel() (s string) { | ||
return l.GetLevel() | ||
} | ||
|
||
func (l *Logger) GetLevel() (s string) { | ||
if l.t { | ||
return "trace" | ||
} else if l.d { | ||
return "debug" | ||
} else if l.i { | ||
return "info" | ||
} else if l.w { | ||
return "warn" | ||
} | ||
return "error" | ||
} | ||
|
||
func Tracef(format string, v ...interface{}) { | ||
l.Tracef(format, v...) | ||
} | ||
|
||
func Debugf(format string, v ...interface{}) { | ||
l.Debugf(format, v...) | ||
} | ||
|
||
func Infof(format string, v ...interface{}) { | ||
l.Infof(format, v...) | ||
} | ||
|
||
func Warnf(format string, v ...interface{}) { | ||
l.Warnf(format, v...) | ||
} | ||
|
||
func Errorf(format string, v ...interface{}) { | ||
l.Errorf(format, v...) | ||
} | ||
|
||
func Trace(v ...interface{}) { | ||
l.Tracef(fmt.Sprint(v...)) | ||
} | ||
|
||
func Debug(v ...interface{}) { | ||
l.Debugf(fmt.Sprint(v...)) | ||
} | ||
|
||
func Info(v ...interface{}) { | ||
l.Infof(fmt.Sprint(v...)) | ||
} | ||
|
||
func Warn(v ...interface{}) { | ||
l.Warnf(fmt.Sprint(v...)) | ||
} | ||
|
||
func Error(v ...interface{}) { | ||
l.Errorf(fmt.Sprint(v...)) | ||
} | ||
|
||
func (l *Logger) Tracef(format string, v ...interface{}) { | ||
if l.t { | ||
l.T.Output(3, fmt.Sprintf(format, v...)) | ||
} | ||
} | ||
|
||
func (l *Logger) Debugf(format string, v ...interface{}) { | ||
if l.d { | ||
l.D.Output(3, fmt.Sprintf(format, v...)) | ||
} | ||
} | ||
|
||
func (l *Logger) Infof(format string, v ...interface{}) { | ||
if l.i { | ||
l.I.Output(3, fmt.Sprintf(format, v...)) | ||
} | ||
} | ||
|
||
func (l *Logger) Warnf(format string, v ...interface{}) { | ||
if l.w { | ||
l.W.Output(3, fmt.Sprintf(format, v...)) | ||
} | ||
} | ||
|
||
func (l *Logger) Errorf(format string, v ...interface{}) { | ||
if l.e { | ||
l.E.Output(3, fmt.Sprintf(format, v...)) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters