Remove logging

This commit is contained in:
Philipp Holzer 2020-01-31 19:43:48 +01:00
parent 9ba8735b4a
commit 0c01512c5d
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 0 additions and 4 deletions

View File

@ -45,12 +45,8 @@ class Emailer
*/
public function send(IEmail $email)
{
$this->logger->debug('start emailing', ['email' => $email]);
Hook::callAll('emailer_send_prepare', $email);
$this->logger->debug('End Hook call', ['email' => $email]);
if (empty($email)) {
return true;
}