Skip to content

Commit c91cf1b

Browse files
authored
1 parent 87050ca commit c91cf1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/editor/common/services/languageFeatureDebounce.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export class LanguageFeatureDebounceService implements ILanguageFeatureDebounceS
134134
const key = `${IdentityHash.of(feature)},${min}${extra ? ',' + extra : ''}`;
135135
let info = this._data.get(key);
136136
if (!info) {
137-
if (!this._isDev) {
137+
if (this._isDev) {
138138
this._logService.debug(`[DEBOUNCE: ${name}] is disabled in developed mode`);
139139
info = new NullDebounceInformation(min * 1.5);
140140
} else {

0 commit comments

Comments
 (0)