From 542360739329db248e3ad20f205a999334762048 Mon Sep 17 00:00:00 2001 From: Michael Kirk Date: Thu, 6 Dec 2018 19:12:16 -0500 Subject: [PATCH] debug logging --- .../src/Messages/Attachments/TSAttachmentStream.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SignalServiceKit/src/Messages/Attachments/TSAttachmentStream.m b/SignalServiceKit/src/Messages/Attachments/TSAttachmentStream.m index c5e70b384..15c4d2055 100644 --- a/SignalServiceKit/src/Messages/Attachments/TSAttachmentStream.m +++ b/SignalServiceKit/src/Messages/Attachments/TSAttachmentStream.m @@ -192,7 +192,7 @@ typedef void (^OWSLoadedThumbnailSuccess)(OWSLoadedThumbnail *loadedThumbnail); OWSFailDebug(@"Missing path for attachment."); return NO; } - OWSLogInfo(@"Writing attachment to file: %@", filePath); + OWSLogDebug(@"Writing attachment to file: %@", filePath); return [data writeToFile:filePath options:0 error:error]; } @@ -205,7 +205,7 @@ typedef void (^OWSLoadedThumbnailSuccess)(OWSLoadedThumbnail *loadedThumbnail); OWSFailDebug(@"Missing path for attachment."); return NO; } - OWSLogInfo(@"Writing attachment to file: %@", filePath); + OWSLogDebug(@"Writing attachment to file: %@", filePath); return [dataSource writeToPath:filePath]; }