Use default beets logger

This commit is contained in:
Thomas Scholtes 2014-01-20 19:23:46 +01:00
parent 54763878d7
commit 1f53b658bb

View file

@ -1204,9 +1204,9 @@ def move_items(lib, dest, query, copy, album):
action = 'Copying' if copy else 'Moving'
entity = 'album' if album else 'item'
logging.info('%s %i %ss.' % (action, len(objs), entity))
log.info('%s %i %ss.' % (action, len(objs), entity))
for obj in objs:
logging.debug('moving: %s' % obj.path)
log.debug('moving: %s' % obj.path)
obj.move(copy, basedir=dest)
obj.store()