summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-03-11 11:56:17 +0200
committerLars Wirzenius <liw@liw.fi>2016-03-11 17:19:33 +0200
commit3b58ae9f54354f2cb84f341b3562d33406b9355f (patch)
treea03d78810d64faa3d2c10f7f0faf5116b443105b
parent450870e1414b1be579a9130006ff62d429754280 (diff)
downloadobnam-3b58ae9f54354f2cb84f341b3562d33406b9355f.tar.gz
Make symlink restore logging be more detailed
-rw-r--r--obnamlib/plugins/restore_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/obnamlib/plugins/restore_plugin.py b/obnamlib/plugins/restore_plugin.py
index 6bb66189..4b99cb69 100644
--- a/obnamlib/plugins/restore_plugin.py
+++ b/obnamlib/plugins/restore_plugin.py
@@ -253,7 +253,7 @@ class RestorePlugin(obnamlib.ObnamPlugin):
self.hardlinks.forget(metadata)
def restore_symlink(self, gen, filename, metadata):
- logging.debug('restoring symlink %s', filename)
+ logging.debug('restoring symlink %r -> %r', filename, metadata.target)
def restore_first_link(self, gen, filename, metadata):
if stat.S_ISREG(metadata.st_mode):