summaryrefslogtreecommitdiffstats
path: root/vendor/maunium.net/go/maulogger/v2/defaults.go
blob: 571e79ccc9e183b7c59c8022b1d047f29aff0f20 (plain) (blame)
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
// mauLogger - A logger for Go programs
// Copyright (c) 2016-2021 Tulir Asokan
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

package maulogger

import (
	"os"
)

// DefaultLogger ...
var DefaultLogger = Create().(*BasicLogger)

// SetWriter formats the given parts with fmt.Sprint and logs the result with the SetWriter level
func SetWriter(w *os.File) {
	DefaultLogger.SetWriter(w)
}

// OpenFile formats the given parts with fmt.Sprint and logs the result with the OpenFile level
func OpenFile() error {
	return DefaultLogger.OpenFile()
}

// Close formats the given parts with fmt.Sprint and logs the result with the Close level
func Close() error {
	return DefaultLogger.Close()
}

// Sub creates a Sublogger
func Sub(module string) Logger {
	return DefaultLogger.Sub(module)
}

// Raw formats the given parts with fmt.Sprint and logs the result with the Raw level
func Rawm(level Level, metadata map[string]interface{}, module, message string) {
	DefaultLogger.Raw(level, metadata, module, message)
}

func Raw(level Level, module, message string) {
	DefaultLogger.Raw(level, map[string]interface{}{}, module, message)
}

// Log formats the given parts with fmt.Sprint and logs the result with the given level
func Log(level Level, parts ...interface{}) {
	DefaultLogger.DefaultSub.Log(level, parts...)
}

// Logln formats the given parts with fmt.Sprintln and logs the result with the given level
func Logln(level Level, parts ...interface{}) {
	DefaultLogger.DefaultSub.Logln(level, parts...)
}

// Logf formats the given message and args with fmt.Sprintf and logs the result with the given level
func Logf(level Level, message string, args ...interface{}) {
	DefaultLogger.DefaultSub.Logf(level, message, args...)
}

// Logfln formats the given message and args with fmt.Sprintf, appends a newline and logs the result with the given level
func Logfln(level Level, message string, args ...interface{}) {
	DefaultLogger.DefaultSub.Logfln(level, message, args...)
}

// Debug formats the given parts with fmt.Sprint and logs the result with the Debug level
func Debug(parts ...interface{}) {
	DefaultLogger.DefaultSub.Debug(parts...)
}

// Debugln formats the given parts with fmt.Sprintln and logs the result with the Debug level
func Debugln(parts ...interface{}) {
	DefaultLogger.DefaultSub.Debugln(parts...)
}

// Debugf formats the given message and args with fmt.Sprintf and logs the result with the Debug level
func Debugf(message string, args ...interface{}) {
	DefaultLogger.DefaultSub.Debugf(message, args...)
}

// Debugfln formats the given message and args with fmt.Sprintf, appends a newline and logs the result with the Debug level
func Debugfln(message string, args ...interface{}) {
	DefaultLogger.DefaultSub.Debugfln(message, args...)
}

// Info formats the given parts with fmt.Sprint and logs the result with the Info level
func Info(parts ...interface{}) {
	DefaultLogger.DefaultSub.Info(parts...)
}

// Infoln formats the given parts with fmt.Sprintln and logs the result with the Info level
func Infoln(parts ...interface{}) {
	DefaultLogger.DefaultSub.Infoln(parts...)
}

// Infof formats the given message and args with fmt.Sprintf and logs the result with the Info level
func Infof(message string, args ...interface{}) {
	DefaultLogger.DefaultSub.Infof(message, args...)
}

// Infofln formats the given message and args with fmt.Sprintf, appends a newline and logs the result with the Info level
func Infofln(message string, args ...interface{}) {
	DefaultLogger.DefaultSub.Infofln(message, args...)
}

// Warn formats the given parts with fmt.Sprint and logs the result with the Warn level
func Warn(parts ...interface{}) {
	DefaultLogger.DefaultSub.Warn(parts...)
}

// Warnln formats the given parts with fmt.Sprintln and logs the result with the Warn level
func Warnln(parts ...interface{}) {
	DefaultLogger.DefaultSub.Warnln(parts...)
}

// Warnf formats the given message and args with fmt.Sprintf and logs the result with the Warn level
func Warnf(message string, args ...interface{}) {
	DefaultLogger.DefaultSub.Warnf(message, args...)
}

// Warnfln formats the given message and args with fmt.Sprintf, appends a newline and logs the result with the Warn level
func Warnfln(message string, args ...interface{}) {
	DefaultLogger.DefaultSub.Warnfln(message, args...)
}

// Error formats the given parts with fmt.Sprint and logs the result with the Error level
func Error(parts ...interface{}) {
	DefaultLogger.DefaultSub.Error(parts...)
}

// Errorln formats the given parts with fmt.Sprintln and logs the result with the Error level
func Errorln(parts ...interface{}) {
	DefaultLogger.DefaultSub.Errorln(parts...)
}

// Errorf formats the given message and args with fmt.Sprintf and logs the result with the Error level
func Errorf(message string, args ...interface{}) {
	DefaultLogger.DefaultSub.Errorf(message, args...)
}

// Errorfln formats the given message and args with fmt.Sprintf, appends a newline and logs the result with the Error level
func Errorfln(message string, args ...interface{}) {
	DefaultLogger.DefaultSub.Errorfln(message, args...)
}

// Fatal formats the given parts with fmt.Sprint and logs the result with the Fatal level
func Fatal(parts ...interface{}) {
	DefaultLogger.DefaultSub.Fatal(parts...)
}

// Fatalln formats the given parts with fmt.Sprintln and logs the result with the Fatal level
func Fatalln(parts ...interface{}) {
	DefaultLogger.DefaultSub.Fatalln(parts...)
}

// Fatalf formats the given message and args with fmt.Sprintf and logs the result with the Fatal level
func Fatalf(message string, args ...interface{}) {
	DefaultLogger.DefaultSub.Fatalf(message, args...)
}

// Fatalfln formats the given message and args with fmt.Sprintf, appends a newline and logs the result with the Fatal level
func Fatalfln(message string, args ...interface{}) {
	DefaultLogger.DefaultSub.Fatalfln(message, args...)
}

// Log formats the given parts with fmt.Sprint and logs the result with the given level
func (log *BasicLogger) Log(level Level, parts ...interface{}) {
	log.DefaultSub.Log(level, parts...)
}

// Logln formats the given parts with fmt.Sprintln and logs the result with the given level
func (log *BasicLogger) Logln(level Level, parts ...interface{}) {
	log.DefaultSub.Logln(level, parts...)
}

// Logf formats the given message and args with fmt.Sprintf and logs the result with the given level
func (log *BasicLogger) Logf(level Level, message string, args ...interface{}) {
	log.DefaultSub.Logf(level, message, args...)
}

// Logfln formats the given message and args with fmt.Sprintf, appends a newline and logs the result with the given level
func (log *BasicLogger) Logfln(level Level, message string, args ...interface{}) {
	log.DefaultSub.Logfln(level, message, args...)
}

// Debug formats the given parts with fmt.Sprint and logs the result with the Debug level
func (log *BasicLogger) Debug(parts ...interface{}) {
	log.DefaultSub.Debug(parts...)
}

// Debugln formats the given parts with fmt.Sprintln and logs the result with the Debug level
func (log *BasicLogger) Debugln(parts ...interface{}) {
	log.DefaultSub.Debugln(parts...)
}

// Debugf formats the given message and args with fmt.Sprintf and logs the result with the Debug level
func (log *BasicLogger) Debugf(message string, args ...interface{}) {
	log.DefaultSub.Debugf(message, args...)
}

// Debugfln formats the given message and args with fmt.Sprintf, appends a newline and logs the result with the Debug level
func (log *BasicLogger) Debugfln(message string, args ...interface{}) {
	log.DefaultSub.Debugfln(message, args...)
}

// Info formats the given parts with fmt.Sprint and logs the result with the Info level
func (log *BasicLogger) Info(parts ...interface{}) {
	log.DefaultSub.Info(parts...)
}

// Infoln formats the given parts with fmt.Sprintln and logs the result with the Info level
func (log *BasicLogger) Infoln(parts ...interface{}) {
	log.DefaultSub.Infoln(parts...)
}

// Infofln formats the given message and args with fmt.Sprintf, appends a newline and logs the result with the Info level
func (log *BasicLogger) Infofln(message string, args ...interface{}) {
	log.DefaultSub.Infofln(message, args...)
}

// Infof formats the given message and args with fmt.Sprintf and logs the result with the Info level
func (log *BasicLogger) Infof(message string, args ...interface{}) {
	log.DefaultSub.Infof(message, args...)
}

// Warn formats the given parts with fmt.Sprint and logs the result with the Warn level
func (log *BasicLogger) Warn(parts ...interface{}) {
	log.DefaultSub.Warn(parts...)
}

// Warnln formats the given parts with fmt.Sprintln and logs the result with the Warn level
func (log *BasicLogger) Warnln(parts ...interface{}) {
	log.DefaultSub.Warnln(parts...)
}

// Warnfln formats the given message and args with fmt.Sprintf, appends a newline and logs the result with the Warn level
func (log *BasicLogger) Warnfln(message string, args ...interface{}) {
	log.DefaultSub.Warnfln(message, args...)
}

// Warnf formats the given message and args with fmt.Sprintf and logs the result with the Warn level
func (log *BasicLogger) Warnf(message string, args ...interface{}) {
	log.DefaultSub.Warnf(message, args...)
}

// Error formats the given parts with fmt.Sprint and logs the result with the Error level
func (log *BasicLogger) Error(parts ...interface{}) {
	log.DefaultSub.Error(parts...)
}

// Errorln formats the given parts with fmt.Sprintln and logs the result with the Error level
func (log *BasicLogger) Errorln(parts ...interface{}) {
	log.DefaultSub.Errorln(parts...)
}

// Errorf formats the given message and args with fmt.Sprintf and logs the result with the Error level
func (log *BasicLogger) Errorf(message string, args ...interface{}) {
	log.DefaultSub.Errorf(message, args...)
}

// Errorfln formats the given message and args with fmt.Sprintf, appends a newline and logs the result with the Error level
func (log *BasicLogger) Errorfln(message string, args ...interface{}) {
	log.DefaultSub.Errorfln(message, args...)
}

// Fatal formats the given parts with fmt.Sprint and logs the result with the Fatal level
func (log *BasicLogger) Fatal(parts ...interface{}) {
	log.DefaultSub.Fatal(parts...)
}

// Fatalln formats the given parts with fmt.Sprintln and logs the result with the Fatal level
func (log *BasicLogger) Fatalln(parts ...interface{}) {
	log.DefaultSub.Fatalln(parts...)
}

// Fatalf formats the given message and args with fmt.Sprintf and logs the result with the Fatal level
func (log *BasicLogger) Fatalf(message string, args ...interface{}) {
	log.DefaultSub.Fatalf(message, args...)
}

// Fatalfln formats the given message and args with fmt.Sprintf, appends a newline and logs the result with the Fatal level
func (log *BasicLogger) Fatalfln(message string, args ...interface{}) {
	log.DefaultSub.Fatalfln(message, args...)
}