Skip to content

Commit

Permalink
Update to test sizeLimit
Browse files Browse the repository at this point in the history
  • Loading branch information
willybrauner committed Oct 7, 2023
1 parent 779ecc6 commit e64f0ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions packages/interpol/src/Interpol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,6 @@ export class Interpol<K extends keyof Props = keyof Props> {
* Log util
*/
#log(...rest: any[]): void {
this.debugEnable &&
console.log(`%cinterpol`, `color: rgb(53,158,182)`, this.ID || "", ...rest)
this.debugEnable && console.log(`%cinterpol`, `color: rgb(53,158,182)`, this.ID || "", ...rest)
}
}
3 changes: 2 additions & 1 deletion packages/interpol/src/Timeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@ export class Timeline {
* @param rest
*/
#log(...rest: any[]): void {
this.#debugEnable && console.log(`%ctimeline`, `color: rgb(217,50,133)`, this.ID || "", ...rest)
this.#debugEnable &&
console.log(`%ctimeline`, `color: rgb(217,50,133)`, this.ID || "", ...rest)
}
}

0 comments on commit e64f0ee

Please sign in to comment.