chromephp icon indicating copy to clipboard operation
chromephp copied to clipboard

Duplicate console messages

Open barbmc opened this issue 8 years ago • 1 comments

I have the following code

<?php $emailarray = array("[email protected]"); require_once('ChromePhp.php'); foreach($emailarray as $row) { $mail->addAddress($row); if ($mail->send()) { ChromePhp::log("Email sent to $row"); } else { ChromePhp::log("Email failed to $row - $mail->ErrorInfo"); } $mail->clearAddresses(); } ChromePhp::log("All Emails sent"); ?>

But I get the messages twice like this

Email sent to [email protected] All Emails sent Email sent to [email protected] All Emails sent

Any idea why this is happening?

barbmc avatar Aug 15 '16 05:08 barbmc

Does anybody fix this problem? Screenshot from 2019-12-08 19-00-13

fakhamatia avatar Dec 08 '19 15:12 fakhamatia