How to use the corvid-local-logger.silly function in corvid-local-logger

To help you get started, we’ve selected a few corvid-local-logger examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github wix-incubator / corvid / packages / corvid-local-site / src / watcher.js View on Github external
ignoredCopyFile: async (relativeSourcePath, relativeTargetPath) => {
      logger.silly(
        getMessage("Watcher_Ignored_Copy_Log", {
          sourcePath: relativeSourcePath,
          targetPath: relativeTargetPath
        })
      );
      try {
        ignoreAction("write", relativeTargetPath);
        assertUnderRoot(relativeSourcePath);
        assertUnderRoot(relativeTargetPath);

        await fs.copy(
          fullPath(relativeSourcePath),
          fullPath(relativeTargetPath)
        );
      } catch (err) {
        logger.info(