Skip to content

Commit

Permalink
fix(SyncProcess): Shorten excessive logging of REORDER actions
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed Dec 21, 2024
1 parent 3bf20dc commit 8ebad4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/strategies/Default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1155,7 +1155,7 @@ export default class SyncProcess {
Logger.log({ reorderings })

await Parallel.each(reorderings.getActions(), async(action) => {
Logger.log('Executing reorder action', action)
Logger.log('Executing reorder action', `${action.type} Payload: #${action.payload.id}[${action.payload.title}]${'url' in action.payload ? `(${action.payload.url})` : ''} parentId: ${action.payload.parentId}`)
const item = action.payload

if (this.canceled) {
Expand Down

0 comments on commit 8ebad4b

Please sign in to comment.