Skip to content

Commit f6fbcaf

Browse files
committed
chore(logging): tweak logging levels
1 parent 0b1b974 commit f6fbcaf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/watch/watchers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export class BaseWatch implements Roots, Watch {
9797
const onChange = path => {
9898
logger.debug(`File changed: ${path} - copy`);
9999
const isSymlink = this.isTargetSymLink();
100-
logger.info(`${path} - isSymlink? ${isSymlink}`);
100+
logger.debug(`${path} - isSymlink? ${isSymlink}`);
101101
if (!isSymlink) {
102102
copyThenTouch(path, this.getDestination(path));
103103
}
@@ -129,7 +129,7 @@ export class BaseWatch implements Roots, Watch {
129129
try {
130130
const lstat = lstatSync(this.targetRoot);
131131
const out = lstat.isSymbolicLink();
132-
logger.debug(
132+
logger.silly(
133133
'[isDestinationSymLink] targetRoot: ',
134134
this.targetRoot,
135135
'isSymLink?',

0 commit comments

Comments
 (0)