We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b1b974 commit f6fbcafCopy full SHA for f6fbcaf
1 file changed
src/watch/watchers.ts
@@ -97,7 +97,7 @@ export class BaseWatch implements Roots, Watch {
97
const onChange = path => {
98
logger.debug(`File changed: ${path} - copy`);
99
const isSymlink = this.isTargetSymLink();
100
- logger.info(`${path} - isSymlink? ${isSymlink}`);
+ logger.debug(`${path} - isSymlink? ${isSymlink}`);
101
if (!isSymlink) {
102
copyThenTouch(path, this.getDestination(path));
103
}
@@ -129,7 +129,7 @@ export class BaseWatch implements Roots, Watch {
129
try {
130
const lstat = lstatSync(this.targetRoot);
131
const out = lstat.isSymbolicLink();
132
- logger.debug(
+ logger.silly(
133
'[isDestinationSymLink] targetRoot: ',
134
this.targetRoot,
135
'isSymLink?',
0 commit comments