From 1f53b658bb1f595b54d79ebaf2019fc197f1e4bf Mon Sep 17 00:00:00 2001 From: Thomas Scholtes Date: Mon, 20 Jan 2014 19:23:46 +0100 Subject: [PATCH] Use default beets logger --- beets/ui/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index e8947ef01..2c2df0e01 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -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()