mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +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
|
// Resolve paths and verify is not exclusion
|
||||||
Path path = watchDir.resolve((Path) event.context());
|
Path path = watchDir.resolve((Path) event.context());
|
||||||
LogHelper.debug("DirWatcher event %s", path.toString());
|
|
||||||
Deque<String> stringPath = toPath(dir.relativize(path));
|
Deque<String> stringPath = toPath(dir.relativize(path));
|
||||||
|
LogHelper.debug("DirWatcher event %s", String.join("/", stringPath));
|
||||||
if (matcher != null && !matcher.shouldVerify(stringPath))
|
if (matcher != null && !matcher.shouldVerify(stringPath))
|
||||||
continue; // Exclusion; should not be verified
|
continue; // Exclusion; should not be verified
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue