forked from 0x19/goesl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogger.go
More file actions
50 lines (41 loc) · 1014 Bytes
/
logger.go
File metadata and controls
50 lines (41 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright 2015 Nevio Vesic
// Please check out LICENSE file for more information about what you CAN and what you CANNOT do!
// Basically in short this is a free software for you to do whatever you want to do BUT copyright must be included!
// I didn't write all of this code so you could say it's yours.
// MIT License
package goesl
import "log"
var logger *log.Logger
func SetLogger(l *log.Logger) {
logger = l
}
func Debug(message string, args ...interface{}) {
if logger == nil {
return
}
logger.Printf(message, args...)
}
func Error(message string, args ...interface{}) {
if logger == nil {
return
}
logger.Printf(message, args...)
}
func Notice(message string, args ...interface{}) {
if logger == nil {
return
}
logger.Printf(message, args...)
}
func Info(message string, args ...interface{}) {
if logger == nil {
return
}
logger.Printf(message, args...)
}
func Warning(message string, args ...interface{}) {
if logger == nil {
return
}
logger.Printf(message, args...)
}