소스 검색

Adds more debug logging

main
Eric Amodio 4 년 전
부모
커밋
c08bbc8b44
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      src/annotations/lineAnnotationController.ts

+ 4
- 1
src/annotations/lineAnnotationController.ts 파일 보기

@ -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];
})

불러오는 중...
취소
저장