Skip to content

Commit

Permalink
Change frequent sync logs from info to debug (#4288)
Browse files Browse the repository at this point in the history
  • Loading branch information
theoilie committed Nov 4, 2022
1 parent 31c5a90 commit a752d1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions creator-node/src/services/sync/secondarySyncFromPrimary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ const handleSyncFromPrimary = async ({
// Save all track files to disk in batches (to limit concurrent load)
for (let i = 0; i < trackFiles.length; i += FileSaveMaxConcurrency) {
const trackFilesSlice = trackFiles.slice(i, i + FileSaveMaxConcurrency)
logger.info(
logger.debug(
`TrackFiles saveFileForMultihashToFS - processing trackFiles ${i} to ${
i + FileSaveMaxConcurrency
} out of total ${trackFiles.length}...`
Expand Down Expand Up @@ -565,7 +565,7 @@ const handleSyncFromPrimary = async ({
i,
i + FileSaveMaxConcurrency
)
logger.info(
logger.debug(
`NonTrackFiles saveFileForMultihashToFS - processing files ${i} to ${
i + FileSaveMaxConcurrency
} out of total ${nonTrackFiles.length}...`
Expand Down

0 comments on commit a752d1d

Please sign in to comment.