-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlog.go
98 lines (82 loc) · 2.2 KB
/
log.go
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
* svipul log-wrappers
*
* Copyright (c) 2022 Telenor Norge AS
* Author(s):
* - Kristian Lyngstøl <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
package svipul
/*
log.go is largely a wrapper around log for now, mainly so I can start doing
regular calls to log without having to worry about future-proofing it.
Add wrappers on demand.
The one concession it has is that it adds Debug/Debugf which evaluates if
we've turned on debugging. This makes calls to svipul.Debug() very fast
when it's disabled. This makes it unproblematic to add debug-logging in
high-traffic code that would otherwise risk slowing down regular
non-debugging code.
*/
import (
"fmt"
"log"
"os"
)
func Init() {
d := log.Default()
if Config.Debug {
d.SetFlags(log.Ltime | log.Lshortfile)
} else {
d.SetFlags(log.Ltime)
}
}
func Log(v ...any) {
log.Output(2, fmt.Sprint(v...))
}
func Logf(format string, v ...any) {
log.Output(2, fmt.Sprintf(format, v...))
}
func Logln(v ...any) {
log.Output(2, fmt.Sprintln(v...))
}
func Fatal(v ...any) {
log.Output(2, fmt.Sprint(v...))
os.Exit(1)
}
func Fatalf(format string, v ...any) {
log.Output(2, fmt.Sprintf(format, v...))
os.Exit(1)
}
func Fatalln(v ...any) {
log.Output(2, fmt.Sprintln(v...))
os.Exit(1)
}
func Debug(v ...any) {
if Config.Debug {
log.Output(2, fmt.Sprint(v...))
}
}
func Debugf(format string, v ...any) {
if Config.Debug {
log.Output(2, fmt.Sprintf(format, v...))
}
}
func Debugln(v ...any) {
if Config.Debug {
log.Output(2, fmt.Sprintln(v...))
}
}