Browse Source

Fixes logging regression

main
Eric Amodio 1 year ago
parent
commit
e111525436
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/env/node/git/git.ts

+ 1
- 1
src/env/node/git/git.ts View File

@ -1902,7 +1902,7 @@ export class Git {
private _gitOutput: OutputChannel | undefined;
private logGitCommand(command: string, duration: number, ex?: Error): void {
if (Logger.enabled(LogLevel.Debug) && !Logger.isDebugging) return;
if (!Logger.enabled(LogLevel.Debug) && !Logger.isDebugging) return;
const slow = duration > slowCallWarningThreshold;

Loading…
Cancel
Save