mirror of
https://github.com/rclone/rclone.git
synced 2025-12-10 13:23:21 +00:00
cmount: extra debug for #2187
This commit is contained in:
@@ -192,7 +192,7 @@ func (fsys *FS) Destroy() {
|
|||||||
|
|
||||||
// Getattr reads the attributes for path
|
// Getattr reads the attributes for path
|
||||||
func (fsys *FS) Getattr(path string, stat *fuse.Stat_t, fh uint64) (errc int) {
|
func (fsys *FS) Getattr(path string, stat *fuse.Stat_t, fh uint64) (errc int) {
|
||||||
defer log.Trace(path, "fh=0x%X", fh)("errc=%v", &errc)
|
defer log.Trace(path, "fh=0x%X", fh)("stat=%+v, errc=%v", &stat, &errc)
|
||||||
node, _, errc := fsys.getNode(path, fh)
|
node, _, errc := fsys.getNode(path, fh)
|
||||||
if errc == 0 {
|
if errc == 0 {
|
||||||
errc = fsys.stat(node, stat)
|
errc = fsys.stat(node, stat)
|
||||||
|
|||||||
Reference in New Issue
Block a user