diff options
Diffstat (limited to 'src/tmpfiles/tmpfiles.c')
-rw-r--r-- | src/tmpfiles/tmpfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 97901220e4..c6c8ce8fee 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -669,7 +669,7 @@ static int create_item(Item *i) { case COPY_FILES: r = copy_tree(i->argument, i->path); if (r < 0) { - log_error("Failed to copy files: %s", strerror(-r)); + log_error("Failed to copy files to %s: %s", i->path, strerror(-r)); return r; } |