소스 검색

Merge pull request #999 from voidplayer/patch-1

Downgrade logging to info when no optional info about images is found
Justin Mayer 6 년 전
부모
커밋
2dd10e78bc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      photos/photos.py

+ 1 - 1
photos/photos.py

@@ -110,7 +110,7 @@ def read_notes(filename, msg=None):
                     notes[line] = ''
     except Exception as e:
         if msg:
-            logger.warning('{} at file {}'.format(msg, filename))
+            logger.info('{} at file {}'.format(msg, filename))
         logger.debug('read_notes issue: {} at file {}. Debug message:{}'.format(msg, filename, e))
     return notes