More logging.

This commit is contained in:
JesseBrault0709 2023-01-10 12:14:48 -06:00
parent fecde624c1
commit 444047b205

View File

@ -203,6 +203,8 @@ class StaticSiteGeneratorCli implements Callable<Integer> {
if (it.kind() == StandardWatchEventKinds.ENTRY_CREATE && Files.isDirectory(childPath)) {
logger.debug('registering dir with path: {}', childPath)
registerPath(childPath)
} else if (Files.isRegularFile(childPath)) {
logger.debug('detected {} for regularFile with path {}', it.kind(), childPath)
}
}
}