mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
[ANY] Изменен формат вывола логов DirWatcher ля отладки
This commit is contained in:
parent
c62a3865dd
commit
72d2f1d995
1 changed files with 1 additions and 1 deletions
|
@ -121,8 +121,8 @@ private void processKey(WatchKey key) throws IOException {
|
|||
|
||||
// Resolve paths and verify is not exclusion
|
||||
Path path = watchDir.resolve((Path) event.context());
|
||||
LogHelper.debug("DirWatcher event %s", path.toString());
|
||||
Deque<String> stringPath = toPath(dir.relativize(path));
|
||||
LogHelper.debug("DirWatcher event %s", String.join("/", stringPath));
|
||||
if (matcher != null && !matcher.shouldVerify(stringPath))
|
||||
continue; // Exclusion; should not be verified
|
||||
|
||||
|
|
Loading…
Reference in a new issue