diff options
author | Jakob Unterwurzacher | 2015-09-03 18:57:28 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-09-03 19:09:11 +0200 |
commit | f8fddff7694b2cb9487fd4b5cbe9f97a136600b0 (patch) | |
tree | c592e59683165d9af1116e65fa16ffddff1bb7c5 /log.go | |
parent | 4e93fdf820695c6afb38d525b5cf1dcc64080305 (diff) |
Split into FS and File
Diffstat (limited to 'log.go')
-rw-r--r-- | log.go | 19 |
1 files changed, 0 insertions, 19 deletions
@@ -1,19 +0,0 @@ -package gocryptfs - -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} |