-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogging.go
158 lines (136 loc) · 3.62 KB
/
logging.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
/*
Copyright © 2022 ITRS Group
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 cordial is a collection of tools, packages and integrations for
// Geneos written primarily in Go
package cordial
import (
"fmt"
"io"
"os"
"path"
"runtime"
"strings"
"time"
"gopkg.in/natefinch/lumberjack.v2"
"github.com/itrs-group/cordial/pkg/config"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
)
type discardCloser struct {
io.Writer
}
func (discardCloser) Close() error { return nil }
// LogInit is called to set-up zerolog with our chosen defaults. The
// default is to log to STDERR.
//
// If logfile is passed and the first element is not empty, then use
// that as the log file unless it is either "-" (which means use STDOUT
// (not STDERR) or equal to the [os.DevNull] value, in which case is
// [io.Discard].
func LogInit(prefix string, options ...LogOptions) {
opts := evalLoggerOptions(options...)
zerolog.CallerMarshalFunc = func(pc uintptr, file string, line int) string {
if zerolog.GlobalLevel() > zerolog.DebugLevel {
return ""
}
fnName := "UNKNOWN"
fn := runtime.FuncForPC(pc)
if fn != nil {
fnName = fn.Name()
}
fnName = path.Base(fnName)
// fnName = strings.TrimPrefix(fnName, "main.")
s := strings.SplitAfterN(file, prefix+"/", 2)
if len(s) == 2 {
file = s[1]
}
return fmt.Sprintf("%s:%d %s()", file, line, fnName)
}
var nocolor bool
var out io.WriteCloser
out = os.Stderr
switch opts.logfile {
case "":
if opts.lj != nil {
if opts.rotateOnStart {
opts.lj.Rotate()
}
out = opts.lj
} else {
out = os.Stderr
}
case "-":
out = os.Stdout
case os.DevNull:
out = discardCloser{io.Discard}
default:
// if given a filename, use the default lumberjack but override
// the filename
if opts.lj == nil {
opts.lj = &lumberjack.Logger{}
}
opts.lj.Filename = opts.logfile
out = &lumberjack.Logger{Filename: opts.logfile}
nocolor = true
}
log.Logger = log.Output(zerolog.ConsoleWriter{
Out: out,
TimeFormat: time.RFC3339,
NoColor: nocolor,
FormatLevel: func(i interface{}) string {
return strings.ToUpper(fmt.Sprintf("%s:", i))
},
FormatMessage: func(i interface{}) string {
if i == nil {
return fmt.Sprintf("%s:", prefix)
}
return fmt.Sprintf("%s: %s", prefix, i)
},
}).With().Caller().Logger()
}
type logOpts struct {
logfile string
lj *lumberjack.Logger
rotateOnStart bool
}
type LogOptions func(*logOpts)
func evalLoggerOptions(options ...LogOptions) *logOpts {
opts := &logOpts{
rotateOnStart: true,
}
for _, opt := range options {
opt(opts)
}
return opts
}
func SetLogfile(logfile string) LogOptions {
return func(lo *logOpts) {
lo.logfile = config.ExpandHome(logfile)
}
}
// LumberJackOptions set the log writer to the configured lumberjack
// settings but only if the lj.Filename field is not empty, otherwise it
// is ignored.
func LumberjackOptions(lj *lumberjack.Logger) LogOptions {
return func(lo *logOpts) {
if lj.Filename != "" {
lj.Filename = config.ExpandHome(lj.Filename)
lo.lj = lj
}
}
}
func RotateOnStart(rotate bool) LogOptions {
return func(lo *logOpts) {
lo.rotateOnStart = rotate
}
}