From 779e89fe7477b7f0671938a88b17ccd033628fb4 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Wed, 29 Nov 2017 10:10:41 -0500 Subject: [PATCH] Clean up ahead of PR. --- SignalServiceKit/src/Util/OWSFileSystem.m | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/SignalServiceKit/src/Util/OWSFileSystem.m b/SignalServiceKit/src/Util/OWSFileSystem.m index 551387b93..8746b1443 100644 --- a/SignalServiceKit/src/Util/OWSFileSystem.m +++ b/SignalServiceKit/src/Util/OWSFileSystem.m @@ -53,8 +53,10 @@ NS_ASSUME_NONNULL_BEGIN return; } if ([fileManager fileExistsAtPath:newFilePath]) { - OWSFail( - @"%@ Can't move file from %@ to %@; destination already exists.", self.logTag, oldFilePath, newFilePath); + OWSFail(@"%@ Can't move file or directory from %@ to %@; destination already exists.", + self.logTag, + oldFilePath, + newFilePath); return; }