Bläddra i källkod

Adds more debug logging

main
Eric Amodio 4 år sedan
förälder
incheckning
c08bbc8b44
1 ändrade filer med 4 tillägg och 1 borttagningar
  1. +4
    -1
      src/annotations/lineAnnotationController.ts

+ 4
- 1
src/annotations/lineAnnotationController.ts Visa fil

@ -237,7 +237,10 @@ export class LineAnnotationController implements Disposable {
const commitLines = [
...Iterables.filterMap<number, [number, GitBlameCommit]>(lines, l => {
const state = Container.lineTracker.getState(l);
if (state?.commit == null) return undefined;
if (state?.commit == null) {
Logger.debug(cc, `Line ${l} returned no commit`);
return undefined;
}
return [l, state.commit];
})

Laddar…
Avbryt
Spara