Merge pull request #3047 from axi/#3045
Remove potential ending line break when using edebug() with LoggerInterface
This commit is contained in:
commit
400aeae82c
|
|
@ -280,6 +280,8 @@ class SMTP
|
|||
}
|
||||
//Is this a PSR-3 logger?
|
||||
if ($this->Debugoutput instanceof \Psr\Log\LoggerInterface) {
|
||||
//Remove ending line breaks potentialy added by calls to SMTP::client_send()
|
||||
$str = rtrim($str, "\n\r");
|
||||
$this->Debugoutput->debug($str);
|
||||
|
||||
return;
|
||||
|
|
|
|||
Loading…
Reference in New Issue