Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornix committed Oct 7, 2021
1 parent 456296f commit 6b1e7a7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/vs/workbench/contrib/notebook/browser/notebookLogger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/

import * as DOM from 'vs/base/browser/dom';
// import * as DOM from 'vs/base/browser/dom';

class NotebookLogger {
constructor() {
this._domFrameLog();
}
private _frameId = 0;
private _domFrameLog() {
DOM.scheduleAtNextAnimationFrame(() => {
this._frameId++;
// DOM.scheduleAtNextAnimationFrame(() => {
// this._frameId++;

this._domFrameLog();
}, 1000000);
// this._domFrameLog();
// }, 1000000);
}

debug(...args: any[]) {
Expand Down

0 comments on commit 6b1e7a7

Please sign in to comment.