(file, cb, flags, options, detailInfo1, detailInfo2)
| 115654 | }; |
| 115655 | } |
| 115656 | function createFileWatcherWithLogging(file, cb, flags, options, detailInfo1, detailInfo2) { |
| 115657 | log("FileWatcher:: Added:: ".concat(getWatchInfo(file, flags, options, detailInfo1, detailInfo2, getDetailWatchInfo))); |
| 115658 | var watcher = triggerInvokingFactory.watchFile(file, cb, flags, options, detailInfo1, detailInfo2); |
| 115659 | return { |
| 115660 | close: function () { |
| 115661 | log("FileWatcher:: Close:: ".concat(getWatchInfo(file, flags, options, detailInfo1, detailInfo2, getDetailWatchInfo))); |
| 115662 | watcher.close(); |
| 115663 | } |
| 115664 | }; |
| 115665 | } |
| 115666 | function createDirectoryWatcherWithLogging(file, cb, flags, options, detailInfo1, detailInfo2) { |
| 115667 | var watchInfo = "DirectoryWatcher:: Added:: ".concat(getWatchInfo(file, flags, options, detailInfo1, detailInfo2, getDetailWatchInfo)); |
| 115668 | log(watchInfo); |
nothing calls this directly
no test coverage detected
searching dependent graphs…