Searched refs:logDirPath (Results 1 – 1 of 1) sorted by relevance
93 Path logDirPath = Paths.get(LOG_DIR); in run() local94 if (!Files.exists(logDirPath)) { in run()95 IncidentHelper.log(Log.WARN, TAG, "Skip dump. " + logDirPath + " does not exist."); in run()98 if (!Files.isReadable(logDirPath)) { in run()99 IncidentHelper.log(Log.WARN, TAG, "Skip dump. " + logDirPath + " is not readable."); in run()107 try (Stream<File> stream = Files.list(logDirPath).map(Path::toFile) in run()