[*] Remove debug mask

This commit is contained in:
Reece Wilson 2022-04-10 16:51:25 +01:00
parent 3defb1bb14
commit 92e195e870

View File

@ -97,7 +97,7 @@ namespace Aurora::IO::FS
if (AuExists(request.events, EWatchEvent::eFileModify) || !bIsDirectory)
{
mask |= IN_MODIFY | IN_CLOSE_WRITE;
mask |= IN_MODIFY;
}
//if (AuExists(request.events, EWatchEvent::eSelfDelete))
@ -105,8 +105,6 @@ namespace Aurora::IO::FS
mask |= IN_DELETE_SELF | IN_MOVE_SELF;
}
mask = IN_ALL_EVENTS;
int ret = inotify_add_watch(this->inotifyHandle_, cached.strNormalizedPath.c_str(), mask);
if (ret == -1)
{