forked from orgrim/pg_back
-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.go
134 lines (116 loc) · 4 KB
/
log.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
// pg_back
//
// Copyright 2011-2021 Nicolas Thauvin and contributors. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
// IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package main
import (
"log"
"os"
)
// LevelLog custom type to allow a verbose mode and handling of levels
// with a prefix
type LevelLog struct {
logger *log.Logger
verbose bool
quiet bool
}
var l = NewLevelLog()
// NewLevelLog setups a logger with the proper configuration for the underlying log
func NewLevelLog() *LevelLog {
return &LevelLog{
logger: log.New(os.Stderr, "", log.LstdFlags|log.Lmsgprefix),
verbose: false,
quiet: false,
}
}
// SetVerbose toggles verbose mode
func (l *LevelLog) SetVerbosity(verbose bool, quiet bool) {
if quiet {
l.quiet = quiet
l.verbose = false
// Quiet mode takes over verbose mode
return
}
l.verbose = verbose
if verbose {
l.logger.SetFlags(log.LstdFlags | log.Lmsgprefix | log.Lmicroseconds)
}
}
// Verbosef prints with log.Printf a message with DEBUG: prefix using log.Printf, only when verbose mode is true
func (l *LevelLog) Verbosef(format string, v ...interface{}) {
if l.verbose {
l.logger.SetPrefix("DEBUG: ")
l.logger.Printf(format, v...)
}
}
// Verboseln prints a message with DEBUG: prefix using log.Println, only when verbose mode is true
func (l *LevelLog) Verboseln(v ...interface{}) {
if l.verbose {
l.logger.SetPrefix("DEBUG: ")
l.logger.Println(v...)
}
}
// Infof prints a message with INFO: prefix using log.Printf
func (l *LevelLog) Infof(format string, v ...interface{}) {
if !l.quiet {
l.logger.SetPrefix("INFO: ")
l.logger.Printf(format, v...)
}
}
// Infoln prints a message with INFO: prefix using log.Println
func (l *LevelLog) Infoln(v ...interface{}) {
if !l.quiet {
l.logger.SetPrefix("INFO: ")
l.logger.Println(v...)
}
}
// Warnf prints a message with WARN: prefix using log.Printf
func (l *LevelLog) Warnf(format string, v ...interface{}) {
l.logger.SetPrefix("WARN: ")
l.logger.Printf(format, v...)
}
// Warnln prints a message with WARN: prefix using log.Println
func (l *LevelLog) Warnln(v ...interface{}) {
l.logger.SetPrefix("WARN: ")
l.logger.Println(v...)
}
// Errorf prints a message with ERROR: prefix using log.Printf
func (l *LevelLog) Errorf(format string, v ...interface{}) {
l.logger.SetPrefix("ERROR: ")
l.logger.Printf(format, v...)
}
// Errorln prints a message with ERROR: prefix using log.Println
func (l *LevelLog) Errorln(v ...interface{}) {
l.logger.SetPrefix("ERROR: ")
l.logger.Println(v...)
}
// Fatalf prints a message with FATAL: prefix using log.Printf
func (l *LevelLog) Fatalf(format string, v ...interface{}) {
l.logger.SetPrefix("FATAL: ")
l.logger.Printf(format, v...)
}
// Fatalln prints a message with FATAL: prefix using log.Println
func (l *LevelLog) Fatalln(v ...interface{}) {
l.logger.SetPrefix("FATAL: ")
l.logger.Println(v...)
}