diff options
author | Jakob Unterwurzacher | 2017-04-01 15:49:53 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-04-01 15:49:53 +0200 |
commit | acb73ca4363a8fbf3e0be1907a9b26689d879d73 (patch) | |
tree | 40ff06220daf3fc0fffac966bf800aa49621b9cb /internal/fusefrontend_reverse/ctlsock_interface.go | |
parent | c87439b4e691f55f79241bc7d9c2bf64a67abe14 (diff) |
fusefrontend_reverse: convert fmt.Printf calls to tlog
The fmt.Printfs output would end up in the paniclog.
Diffstat (limited to 'internal/fusefrontend_reverse/ctlsock_interface.go')
-rw-r--r-- | internal/fusefrontend_reverse/ctlsock_interface.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/fusefrontend_reverse/ctlsock_interface.go b/internal/fusefrontend_reverse/ctlsock_interface.go index 4b3ffe6..4d9a446 100644 --- a/internal/fusefrontend_reverse/ctlsock_interface.go +++ b/internal/fusefrontend_reverse/ctlsock_interface.go @@ -33,6 +33,5 @@ func (rfs *ReverseFS) EncryptPath(plainPath string) (string, error) { // DecryptPath implements ctlsock.Backend func (rfs *ReverseFS) DecryptPath(cipherPath string) (string, error) { p, err := rfs.decryptPath(cipherPath) - //fmt.Printf("rfs DecryptPath: %q -> %q %v\n", cipherPath, p, err) return p, err } |