diff --git a/src/connector/Message.php b/src/connector/Message.php index fb69ab0..6ab1c4d 100644 --- a/src/connector/Message.php +++ b/src/connector/Message.php @@ -73,7 +73,6 @@ public function encodeAttachments(&$parameters) { if(!empty($parameters['attachment']) && is_array($parameters['attachment'])) { foreach($parameters['attachment'] as $k=>$attachment) { $parameters['attachment'][$k]['fileContent'] = base64_encode($attachment['fileContent']); - \SS_Log::log("encode attachment_length=" . strlen($parameters['attachment'][$k]['fileContent']), \SS_Log::DEBUG); } } } @@ -85,7 +84,6 @@ public function decodeAttachments(&$parameters) { if(!empty($parameters['attachment']) && is_array($parameters['attachment'])) { foreach($parameters['attachment'] as $k=>$attachment) { $parameters['attachment'][$k]['fileContent'] = base64_decode($attachment['fileContent']); - \SS_Log::log("decode attachment_length=" . strlen($parameters['attachment'][$k]['fileContent']), \SS_Log::DEBUG); } } }