Skip to content

Commit 50f7ffb

Browse files
committed
[debug] report any file/folder opening on log
1 parent 68c6b0a commit 50f7ffb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/filer.c

+3
Original file line numberDiff line numberDiff line change
@@ -963,6 +963,7 @@ int genRmdir(char *path)
963963
//--------------------------------------------------------------
964964
int genRemove(char *path)
965965
{
966+
DPRINTF("%s: '%s'\n", __FUNCTION__, path);
966967
int ret;
967968

968969
genLimObjName(path, 0);
@@ -976,6 +977,7 @@ int genRemove(char *path)
976977
//--------------------------------------------------------------
977978
int genOpen(char *path, int mode)
978979
{
980+
DPRINTF("%s: '%s' @ %d\n", __FUNCTION__, path, mode);
979981
genLimObjName(path, 0);
980982
return fileXioOpen(path, mode, fileMode);
981983
}
@@ -984,6 +986,7 @@ int genOpen(char *path, int mode)
984986
//--------------------------------------------------------------
985987
int genDopen(char *path)
986988
{
989+
DPRINTF("%s: '%s'\n", __FUNCTION__, path);
987990
int fd;
988991

989992
if (!strncmp(path, "pfs", 3) || !strncmp(path, "vmc", 3)) {

0 commit comments

Comments
 (0)