diff options
author | Quentin <quentin@deuxfleurs.fr> | 2021-11-20 13:42:20 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2021-11-20 13:42:20 +0100 |
commit | e10f04c5e36109c2e58d667c4b6ec054cbdd51be (patch) | |
tree | 7288ab0c17c541c921b77d8ddb71add2a54620ac /s3/stat.go | |
parent | 87fff9843dd60d4ce05596dc55bff44a3724a6bf (diff) | |
download | bagage-e10f04c5e36109c2e58d667c4b6ec054cbdd51be.tar.gz bagage-e10f04c5e36109c2e58d667c4b6ec054cbdd51be.zip |
It seems to worksftp
Diffstat (limited to 's3/stat.go')
-rw-r--r-- | s3/stat.go | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -1,7 +1,6 @@ package s3 import ( - "log" "errors" "io/fs" "path" @@ -105,7 +104,6 @@ func (s *S3Stat) Name() string { } func (s *S3Stat) Size() int64 { - log.Println("stat size: ", s.obj.Size) return s.obj.Size } |