diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-06-09 23:47:17 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-06-10 00:58:30 +0200 |
commit | 56394f93e59b41c1de56ac3c53ebb7224dbc31c8 (patch) | |
tree | 6747a4559022a285338e974ed76cdbb9f7b467ef | |
parent | e07456f4bf2135bcb78cbd5ae1f10d1bbe45490c (diff) | |
download | MultiMC-56394f93e59b41c1de56ac3c53ebb7224dbc31c8.tar MultiMC-56394f93e59b41c1de56ac3c53ebb7224dbc31c8.tar.gz MultiMC-56394f93e59b41c1de56ac3c53ebb7224dbc31c8.tar.lz MultiMC-56394f93e59b41c1de56ac3c53ebb7224dbc31c8.tar.xz MultiMC-56394f93e59b41c1de56ac3c53ebb7224dbc31c8.zip |
NOISSUE log which file couldn't be copied during recursive copy
-rw-r--r-- | api/logic/FileSystem.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/logic/FileSystem.cpp b/api/logic/FileSystem.cpp index 049f1e38..7805a78b 100644 --- a/api/logic/FileSystem.cpp +++ b/api/logic/FileSystem.cpp @@ -131,6 +131,7 @@ bool copy::operator()(const QString &offset) } if(!operator()(inner_offset)) { + qWarning() << "Failed to copy" << inner_offset; return false; } } |