summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2021-08-04 14:45:12 -0400
committerJoel Fischer <joeljfischer@gmail.com>2021-08-04 14:45:12 -0400
commit5cb8098798ae392af0c3ec6752bd4b911522ccec (patch)
treeefd0b084f0a6d3ed308e5104ea59ac7b06e30954
parentcf9b0d93aeb05e5ac6b31b02618fa832ebb8a574 (diff)
downloadsdl_ios-5cb8098798ae392af0c3ec6752bd4b911522ccec.tar.gz
Change some debug logs to verbose
-rw-r--r--SmartDeviceLink/private/SDLIAPDataSession.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/private/SDLIAPDataSession.m b/SmartDeviceLink/private/SDLIAPDataSession.m
index 8c6cc84e8..06d2e1f1d 100644
--- a/SmartDeviceLink/private/SDLIAPDataSession.m
+++ b/SmartDeviceLink/private/SDLIAPDataSession.m
@@ -60,7 +60,7 @@ NS_ASSUME_NONNULL_BEGIN
[self.sendDataQueue popBuffer];
} else {
// Cleave the sent bytes from the data, the remainder will sit at the head of the queue
- SDLLogD(@"SDLIAPDataSession writeDataToSessionStream bytes written %ld", (long)bytesWritten);
+ SDLLogV(@"SDLIAPDataSession writeDataToSessionStream bytes written %ld", (long)bytesWritten);
[remainder replaceBytesInRange:NSMakeRange(0, (NSUInteger)bytesWritten) withBytes:NULL length:0];
}
} else {
@@ -69,7 +69,7 @@ NS_ASSUME_NONNULL_BEGIN
}
}];
} else {
- SDLLogD(@"No more data to write to data session's output stream for IAPSession %@", self.iapSession);
+ SDLLogV(@"No more data to write to data session's output stream for IAPSession %@", self.iapSession);
return;
}
}