diff options
Diffstat (limited to 'cryptfs/log.go')
-rw-r--r-- | cryptfs/log.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cryptfs/log.go b/cryptfs/log.go new file mode 100644 index 0000000..947b1c3 --- /dev/null +++ b/cryptfs/log.go @@ -0,0 +1,19 @@ +package cryptfs + +import ( + "fmt" +) + +type logChannel struct { + enabled bool +} + +func (l logChannel) Printf(format string, args ...interface{}) { + if l.enabled == true { + fmt.Printf(format, args...) + } +} + + +var debug = logChannel{true} +var warn = logChannel{true} |