Browse Source

Downgrade logging to info when no optional info about images is found

voidplayer 6 years ago
parent
commit
4c41bd83c9
1 changed files with 1 additions and 1 deletions
  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