commit 99810d5d273c3c66513811851251c77dff7f50a1
parent 598384d1cc8241a26b999fc63e0e0c608eec3171
Author: Matsuda Kenji <info@mtkn.jp>
Date: Thu, 9 Nov 2023 08:50:19 +0900
delete log message for debugging
Diffstat:
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/client/fs.go b/client/fs.go
@@ -9,7 +9,6 @@ import (
"strings"
"git.mtkn.jp/lib9p"
- "log"
)
// ClientFS represents the file system the client imports.
@@ -20,14 +19,12 @@ type ClientFS struct {
// Open opens the file named name in fsys.
func (fsys *ClientFS) Open(name string) (lib9p.File, error) {
- log.Println("open:", name)
return fsys.OpenFile(name, lib9p.OREAD, 0)
}
// OpenFile opens the file named name in fsys with omode.
// If the file does not exist, it create it with perm.
func (fsys *ClientFS) OpenFile(name string, omode lib9p.OpenMode, perm fs.FileMode) (lib9p.File, error) {
- log.Println("openfile:", name)
var (
qid lib9p.Qid
iounit uint32