2016-02-06 19:20:54 +01:00
|
|
|
package toggledlog
|
2015-09-03 18:22:18 +02:00
|
|
|
|
|
|
|
import (
|
2015-12-13 20:10:52 +01:00
|
|
|
"encoding/json"
|
2016-01-31 18:09:39 +01:00
|
|
|
"fmt"
|
2016-01-20 20:55:56 +01:00
|
|
|
"log"
|
|
|
|
"os"
|
2015-09-03 18:22:18 +02:00
|
|
|
)
|
|
|
|
|
2016-02-06 19:20:54 +01:00
|
|
|
const (
|
|
|
|
ProgramName = "gocryptfs"
|
2016-02-07 14:02:09 +01:00
|
|
|
wpanicMsg = "-wpanic turns this warning into a panic: "
|
2016-02-06 19:20:54 +01:00
|
|
|
)
|
|
|
|
|
2016-01-20 20:55:56 +01:00
|
|
|
func JSONDump(obj interface{}) string {
|
2015-12-08 16:13:29 +01:00
|
|
|
b, err := json.MarshalIndent(obj, "", "\t")
|
|
|
|
if err != nil {
|
2016-01-20 20:55:56 +01:00
|
|
|
return err.Error()
|
2015-12-08 16:13:29 +01:00
|
|
|
} else {
|
2016-01-20 20:55:56 +01:00
|
|
|
return string(b)
|
2015-10-03 13:36:49 +02:00
|
|
|
}
|
|
|
|
}
|
2015-09-03 18:22:18 +02:00
|
|
|
|
2016-01-21 22:59:11 +01:00
|
|
|
// toggledLogger - a Logger than can be enabled and disabled
|
|
|
|
type toggledLogger struct {
|
2016-01-31 18:09:39 +01:00
|
|
|
// Enable or disable output
|
2016-01-21 22:59:11 +01:00
|
|
|
Enabled bool
|
2016-01-31 18:09:39 +01:00
|
|
|
// Panic after logging a message, useful in regression tests
|
2016-02-07 10:55:13 +01:00
|
|
|
Wpanic bool
|
2016-01-21 22:59:11 +01:00
|
|
|
*log.Logger
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *toggledLogger) Printf(format string, v ...interface{}) {
|
|
|
|
if !l.Enabled {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
l.Logger.Printf(format, v...)
|
2016-02-07 10:55:13 +01:00
|
|
|
if l.Wpanic {
|
2016-05-30 09:26:59 +02:00
|
|
|
l.Logger.Panic(wpanicMsg + fmt.Sprintf(format, v...))
|
2016-01-31 18:09:39 +01:00
|
|
|
}
|
2016-01-21 22:59:11 +01:00
|
|
|
}
|
|
|
|
func (l *toggledLogger) Println(v ...interface{}) {
|
|
|
|
if !l.Enabled {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
l.Logger.Println(v...)
|
2016-02-07 10:55:13 +01:00
|
|
|
if l.Wpanic {
|
2016-05-30 09:26:59 +02:00
|
|
|
l.Logger.Panic(wpanicMsg + fmt.Sprintln(v...))
|
2016-01-31 18:09:39 +01:00
|
|
|
}
|
2016-01-21 22:59:11 +01:00
|
|
|
}
|
2015-11-09 22:33:42 +01:00
|
|
|
|
|
|
|
// Debug messages
|
2016-06-05 14:26:16 +02:00
|
|
|
// Can be enabled by passing "-d"
|
2016-01-21 22:59:11 +01:00
|
|
|
var Debug *toggledLogger
|
2015-11-14 17:16:17 +01:00
|
|
|
|
2016-06-05 14:26:16 +02:00
|
|
|
// Informational message
|
|
|
|
// Can be disabled by passing "-q"
|
2016-01-21 22:59:11 +01:00
|
|
|
var Info *toggledLogger
|
2015-11-14 17:16:17 +01:00
|
|
|
|
2016-06-05 14:26:16 +02:00
|
|
|
// A warning, meaning nothing serious by itself but might indicate problems.
|
|
|
|
// Passing "-wpanic" will make this function panic after printing the message.
|
2016-01-21 22:59:11 +01:00
|
|
|
var Warn *toggledLogger
|
2016-01-20 20:55:56 +01:00
|
|
|
|
2016-06-05 14:26:16 +02:00
|
|
|
// Fatal error, we are about to exit
|
|
|
|
var Fatal *toggledLogger
|
|
|
|
|
2016-01-20 20:55:56 +01:00
|
|
|
func init() {
|
2016-01-31 18:09:39 +01:00
|
|
|
Debug = &toggledLogger{false, false, log.New(os.Stdout, "", 0)}
|
|
|
|
Info = &toggledLogger{true, false, log.New(os.Stdout, "", 0)}
|
|
|
|
Warn = &toggledLogger{true, false, log.New(os.Stderr, "", 0)}
|
2016-06-05 14:26:16 +02:00
|
|
|
Fatal = &toggledLogger{true, false, log.New(os.Stderr, "", 0)}
|
2016-01-20 20:55:56 +01:00
|
|
|
}
|