We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e72761f commit 3cf4452Copy full SHA for 3cf4452
src/permission/fs_permission.cc
@@ -69,7 +69,13 @@ bool is_tree_granted(
69
resolved_param.erase(0, 2);
70
}
71
#endif
72
- return granted_tree->Lookup(resolved_param, true);
+ auto _is_granted = granted_tree->Lookup(resolved_param, true);
73
+ node::Debug(env, node::DebugCategory::PERMISSION_MODEL,
74
+ "Access %d to %s\n",
75
+ _is_granted,
76
+ param);
77
+
78
+ return _is_granted;
79
80
81
static const char* kBoxDrawingsLightUpAndRight = "└─ ";
0 commit comments