Skip to content

Commit 8ebad4b

Browse files
committed
fix(SyncProcess): Shorten excessive logging of REORDER actions
Signed-off-by: Marcel Klehr <[email protected]>
1 parent 3bf20dc commit 8ebad4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/strategies/Default.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ export default class SyncProcess {
11551155
Logger.log({ reorderings })
11561156

11571157
await Parallel.each(reorderings.getActions(), async(action) => {
1158-
Logger.log('Executing reorder action', action)
1158+
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}`)
11591159
const item = action.payload
11601160

11611161
if (this.canceled) {

0 commit comments

Comments
 (0)