Skip to content

Commit

Permalink
fix microsoft/vscode#209441 (#209526)
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Rieken committed Apr 4, 2024
1 parent c9a47c1 commit f7ee0eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/editor/common/services/languageFeatureDebounce.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export class LanguageFeatureDebounceService implements ILanguageFeatureDebounceS
const key = `${IdentityHash.of(feature)},${min}${extra ? ',' + extra : ''}`;
let info = this._data.get(key);
if (!info) {
if (!this._isDev) {
if (this._isDev) {
this._logService.debug(`[DEBOUNCE: ${name}] is disabled in developed mode`);
info = new NullDebounceInformation(min * 1.5);
} else {
Expand Down

0 comments on commit f7ee0eb

Please sign in to comment.