forked from kahing/goofys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logger.go
124 lines (102 loc) · 2.47 KB
/
logger.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
// Copyright 2015 Ka-Hing Cheung
//
// 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 internal
import (
"fmt"
glog "log"
"log/syslog"
"os"
"strings"
"sync"
"github.com/Sirupsen/logrus"
logrus_syslog "github.com/Sirupsen/logrus/hooks/syslog"
)
var mu sync.Mutex
var loggers = make(map[string]*logHandle)
var log = GetLogger("main")
var fuseLog = GetLogger("fuse")
var syslogHook *logrus_syslog.SyslogHook
func InitLoggers(logToSyslog bool) {
if logToSyslog {
var err error
syslogHook, err = logrus_syslog.NewSyslogHook("", "", syslog.LOG_DEBUG, "")
if err != nil {
panic("Unable to connect to local syslog daemon")
}
for _, l := range loggers {
l.Hooks.Add(syslogHook)
}
}
}
type logHandle struct {
logrus.Logger
name string
lvl *logrus.Level
}
func (l *logHandle) Format(e *logrus.Entry) ([]byte, error) {
// Mon Jan 2 15:04:05 -0700 MST 2006
timestamp := ""
lvl := e.Level
if l.lvl != nil {
lvl = *l.lvl
}
if syslogHook == nil {
const timeFormat = "2006/01/02 15:04:05.000000"
timestamp = e.Time.Format(timeFormat) + " "
}
str := fmt.Sprintf("%v%v.%v %v",
timestamp,
l.name,
strings.ToUpper(lvl.String()),
e.Message)
if len(e.Data) != 0 {
str += " " + fmt.Sprint(e.Data)
}
str += "\n"
return []byte(str), nil
}
// for aws.Logger
func (l *logHandle) Log(args ...interface{}) {
l.Debugln(args...)
}
func NewLogger(name string) *logHandle {
l := &logHandle{name: name}
l.Out = os.Stderr
l.Formatter = l
l.Level = logrus.InfoLevel
l.Hooks = make(logrus.LevelHooks)
if syslogHook != nil {
l.Hooks.Add(syslogHook)
}
return l
}
func GetLogger(name string) *logHandle {
mu.Lock()
defer mu.Unlock()
if logger, ok := loggers[name]; ok {
return logger
} else {
logger := NewLogger(name)
loggers[name] = logger
return logger
}
}
func GetStdLogger(l *logHandle, lvl logrus.Level) *glog.Logger {
mu.Lock()
defer mu.Unlock()
w := l.Writer()
l.Formatter.(*logHandle).lvl = &lvl
l.Level = lvl
return glog.New(w, "", 0)
}