Skip to content

Commit

Permalink
Changes to log on a single line
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Nov 12, 2019
1 parent 5bcc0de commit 3300fe9
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/views/viewBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -372,16 +372,12 @@ export abstract class ViewBase<TRoot extends ViewNode<View>> implements TreeData
}
}

@debug({
args: { 0: (n: ViewNode) => n.toString() }
})
@debug({ args: { 0: (n: ViewNode) => n.toString() }, singleLine: true })
getNodeLastKnownLimit(node: PageableViewNode) {
return this._lastKnownLimits.get(node.id);
}

@debug({
args: { 0: (n: ViewNode) => n.toString() }
})
@debug({ args: { 0: (n: ViewNode) => n.toString() }, singleLine: true })
resetNodeLastKnownLimit(node: PageableViewNode) {
this._lastKnownLimits.delete(node.id);
}
Expand Down

0 comments on commit 3300fe9

Please sign in to comment.