libgocryptfs/cryptfs/log.go
Jakob Unterwurzacher e7ba3c61f1 Fix File.GettAttr() size reporting
The too-large reported value broke mmap
(applications saw appended zero bytes)

Also
* Add locking for all fd operations
* Add "--debug" command line switch
2015-09-09 19:32:59 +02:00

30 lines
436 B
Go

package cryptfs
import (
"fmt"
"strings"
)
type logChannel struct {
enabled bool
}
func (l *logChannel) Printf(format string, args ...interface{}) {
if l.enabled == true {
fmt.Printf(format, args...)
}
}
func (l *logChannel) Dump(d []byte) {
s := string(d)
fmt.Println(strings.Replace(s, "\000", "\\0", -1))
}
func (l *logChannel) Enable() {
l.enabled = true
}
var Debug = logChannel{false}
var Warn = logChannel{true}