Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken authored Apr 4, 2024
1 parent 87050ca commit c91cf1b
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 c91cf1b

Please sign in to comment.