소스 검색

Add debug messages for artefacts listing

tags/v1.1
JustAnotherArchivist 1 년 전
부모
커밋
c4e3fd29e0
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      codearchiver/cli.py

+ 2
- 0
codearchiver/cli.py 파일 보기

@@ -204,8 +204,10 @@ def main():
finally:
os.chdir('..')
if args.writeArtefactsFd3:
_logger.debug('Listing artefacts on FD 3')
with storage.lock():
artefacts = storage.list_new_files()
_logger.debug(f'Artefacts: {artefacts!r}')
with artefactsFd:
for filename in artefacts:
print(filename, file = artefactsFd)


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