-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathlogger.go
More file actions
58 lines (47 loc) · 1.69 KB
/
logger.go
File metadata and controls
58 lines (47 loc) · 1.69 KB
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
// Copyright 2025 FishGoddess. All Rights Reserved.
//
// 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 main
import (
"io"
"github.com/FishGoddess/logit"
)
func main() {
// Default() will return the default logger.
// You can new a logger or just use the default logger.
logger := logit.Default()
logger.Info("nothing carried")
// Use With() to carry some args in logger.
// All logs output by this logger will carry these args.
logger = logger.With("carry", 666, "who", "me")
logger.Info("see what are carried")
logger.Error("error carried", "err", io.EOF)
// Use WithGroup() to group args in logger.
// All logs output by this logger will group args.
logger = logger.WithGroup("xxx")
logger.Info("what group")
logger.Error("error group", "err", io.EOF)
// If you want to check if one level can be logged, try this:
if logger.DebugEnabled() {
logger.Debug("debug enabled")
}
// We provide some old-school logging methods.
// They are using info level by default.
// If you want to change the level, see defaults.LevelPrint.
logger.Printf("printf %s log", "formatted")
logger.Print("print log")
logger.Println("println log")
// Some useful method:
logger.Sync()
logger.Close()
}