logWatchEvent method

  1. @override
void logWatchEvent(
  1. String folderPath,
  2. String filePath,
  3. String changeType
)
override

Log that the file system watcher sent an event. The folderPath is the path to the folder containing the changed file, the filePath is the path of the file that changed, and the changeType indicates what kind of change occurred.

Implementation

@override
void logWatchEvent(String folderPath, String filePath, String changeType) {
  _instrumentationLogger
      .log(_join([TAG_WATCH_EVENT, folderPath, filePath, changeType]));
}