Skip to content

Commit 3338f4d

Browse files
committed
remove redundant logging
1 parent d01bba4 commit 3338f4d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/sync.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,6 @@ async function syncDirectory(sourceDirPath: string, destDirPath: string, exclude
245245
}
246246

247247
async function syncFile(sourceFilePath: string, destFilePath: string): Promise<void> {
248-
core.info(`Syncing file: ${sourceFilePath} to ${destFilePath}`);
249248
await io.mkdirP(path.dirname(destFilePath));
250249
fs.copyFileSync(sourceFilePath, destFilePath);
251250
}

0 commit comments

Comments
 (0)