Restore missing argument in logging call

Change-Id: Idb44fac8961a4bded4ced48d2a1052bacc8d8447
This commit is contained in:
Dmitry Bogun 2016-12-29 17:42:50 +02:00 committed by Andrii Ostapenko
parent 0139a010e3
commit 355667dc2e
1 changed files with 2 additions and 1 deletions

View File

@ -75,7 +75,8 @@ class CopyImageAction(base.BaseAction):
LOG.debug('Trying to check if path %s exists', check_path)
if os.path.exists(check_path):
LOG.debug('Path %s exists. Trying to sync all files '
'from there to %s', mount_map[fs_mount])
'from there to %s',
check_path, mount_map[fs_mount])
src_path = check_path + '/'
utils.execute('rsync', '-avH', src_path,
mount_map[fs_mount])