This repository has been archived by the owner on Dec 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
logex.go
199 lines (186 loc) · 5.46 KB
/
logex.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
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
/*
* Copyright © 2019 Hedzr Yeh.
*/
package logex
import (
"github.com/hedzr/log"
"github.com/hedzr/logex/formatter"
)
// GetLevel returns the current logging level in log/logex subsystem
func GetLevel() log.Level {
return log.GetLevel()
}
// // Enable makes logrus logging enabled.
// // Deprecated it's obsoleted
// func Enable() {
// //logrus.SetFormatter(&formatter.TextFormatter{ForceColors: true})
// //logrus.SetReportCaller(true)
// //// logrus.AddHook(logex.hook.DefaultContextHook)
// }
// EnableWith makes logrus logging enabled.
// Deprecated it's obsoleted
func EnableWith(lvl log.Level, opts ...Option) {
log.SetLevel(lvl)
log.Setup()
// if lvl == log.OffLevel {
// logrus.SetLevel(logrus.ErrorLevel)
// logrus.SetOutput(dir.Discard)
// } else {
// logrus.SetLevel(logrus.Level(lvl))
// logrus.SetOutput(os.Stdout)
// }
// log.SetLevel(lvl)
// logrus.SetFormatter(&formatter.TextFormatter{ForceColors: true})
// logrus.SetReportCaller(true)
// // logrus.AddHook(logex.hook.DefaultContextHook)
for _, opt := range opts {
opt()
}
}
// const (
// defaultTimestampFormat = "2006-01-02 15:04:05.000"
// defaultShortTimestampFormat = "01-02 15:04:05.999"
// //defaultShortestTimestampFormat = "15:04:05.999"
// )
// // SetupLoggingFormat specify logrus logging configurations.
// // Deprecated it's obsoleted
// func SetupLoggingFormat(format string, logexSkipFrames int, shortTimestamp bool, tsFormat string) {
// if tsFormat == "" {
// tsFormat = defaultTimestampFormat
// if shortTimestamp {
// tsFormat = defaultShortTimestampFormat
// }
// }
//
// switch format {
// case "json":
// logrus.SetFormatter(&logrus.JSONFormatter{
// TimestampFormat: tsFormat,
// DisableTimestamp: false,
// PrettyPrint: false,
// })
// default:
// e := false
// if logexSkipFrames > 0 {
// e = true
// }
// logrus.SetFormatter(&formatter.TextFormatter{
// ForceColors: true,
// DisableColors: false,
// FullTimestamp: true,
// TimestampFormat: tsFormat,
// Skip: logexSkipFrames,
// EnableSkip: e,
// EnvironmentOverrideColors: true,
// })
// }
// if GetLevel() == log.OffLevel {
// logrus.SetLevel(logrus.ErrorLevel)
// logrus.SetOutput(dir.Discard)
// }
// }
// Option specify option function.
// Deprecated it's obsoleted
type Option func()
// SKIP is a constant key
// Deprecated it's obsoleted
const SKIP = formatter.SKIP
// var level log.Level
// func Enable() {
//
// var foreground = vxconf.GetBoolR("app.foreground")
// var file = daemon.DefaultLogFile()
// var lvl = vxconf.GetStringR("app.logger.level")
//
// var target = vxconf.GetStringR("app.logger.target")
// var format = vxconf.GetStringR("app.logger.format")
// if len(target) == 0 {
// target = "default"
// }
// if len(format) == 0 {
// format = "text"
// }
// if target == "journal" {
// format = "text"
// }
// switch format {
// case "json":
// logrus.SetFormatter(&logrus.JSONFormatter{})
// default:
// logrus.SetFormatter(&fmtr.TextFormatter{ForceColors: true})
// }
// // Log as JSON instead of the default ASCII formatter.
//
// can_use_log_file, journal_mode := ij(target, foreground)
// l, _ := logrus.ParseLevel(lvl)
// if cli_common.Debug && l < logrus.DebugLevel {
// l = logrus.DebugLevel
// }
// logrus.SetLevel(l)
// logrus.Debugf("Using logger: format=%v, lvl=%v/%v, target=%v, journal.mode=%v, using.logrus.file=%v", format, lvl, l, target, journal_mode, can_use_log_file)
//
// if foreground == false && can_use_log_file {
// if len(file) == 0 {
// file = os.DevNull // "/dev/null"
// }
//
// logFile, err := os.OpenFile(file, os.O_WRONLY|os.O_APPEND, 0440)
// if err != nil {
// logFile, err = os.Create(file)
// if err != nil {
// fmt.Println(err)
// os.Exit(1)
// } else {
// fmt.Printf("[FG] Using new log file: %s\n\n", file)
// }
// } else {
// fmt.Printf("[FG] Using exists log file: %s\n\n", file)
// }
//
// // logrus.Infof("Using log file: %s", file)
// // fmt.Printf("Using log file: %s\n\n", file)
//
// // Output to stdout instead of the default stderr
// // Can be any io.Writer, see below for File example
// // logrus.SetOutput(os.Stdout)
// logrus.SetOutput(logFile)
// } else {
// logrus.SetReportCaller(true)
// // logrus.AddHook(DefaultContextHook)
// }
//
// // if hook, err := logrus_syslogrus.NewSyslogHook("udp", "localhost:514", syslogrus.LOG_INFO, ""); err == nil { logrus.Hooks.Add(hook) }
//
// // var lvl = vxconf.GetStringR("app.logger.level")
// // var file = daemon.DefaultLogFile()
// // var err error
// //
// // logFile, err := os.OpenFile(file, os.O_WRONLY,0400)
// // if err != nil{
// // fmt.Println(err)
// // }
// //
// // lf, err := logging.LogLevel(lvl)
// // backend1 := logging.NewLogBackend(logFile, "", 0)
// // backend1Leveled := logging.AddModuleLevel(backend1)
// // backend1Leveled.SetLevel(lf, "")
// //
// // if foreground {
// // backend2 := logging.NewLogBackend(os.Stderr, "", 0)
// // backend2Formatter := logging.NewBackendFormatter(backend2, format)
// // logging.SetBackend(backend1Leveled, backend2Formatter)
// // }
//
// // logrus.Debugf("debug %s", Password("secret"))
// // logrus.Info("info")
// // logrus.Notice("notice")
// // logrus.Warning("warning")
// // logrus.Error("suweia.com")
// // logrus.Critical("太严重了")
// // os.Exit(0)
//
// // etcd.Warn("sssss")
// // etcd.Warn("sssss")
// // etcd.Warn("sssss")
// // etcd.Warn("sssss")
// }