Remove debug print statement

This commit is contained in:
Maurice Parker 2019-09-15 04:08:10 -05:00
parent dc67c9f03b
commit 7c3c78b796

View File

@ -210,7 +210,6 @@ private extension ArticleRenderer {
} }
func base64String(forImage image: RSImage) -> String? { func base64String(forImage image: RSImage) -> String? {
print("height: \(image.size.height) width: \(image.size.width)")
return image.dataRepresentation()?.base64EncodedString() return image.dataRepresentation()?.base64EncodedString()
} }