Skip to content

Commit

Permalink
Fix debug
Browse files Browse the repository at this point in the history
  • Loading branch information
xreef committed Jan 31, 2020
1 parent 68086a6 commit 37ece8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion EMailSender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ EMailSender::Response EMailSender::send(const char* to, EMailMessage &email)
client.setInsecure();
bool mfln = client.probeMaxFragmentLength(this->smtp_server, this->smtp_port, 512);

DEBUG_PRINTLN("MFLN supported: %s\n", mfln ? "yes" : "no");
DEBUG_PRINT("MFLN supported: ");
DEBUG_PRINTLN(mfln?"yes":"no");

if (mfln) {
client.setBufferSizes(512, 512);
Expand Down

0 comments on commit 37ece8c

Please sign in to comment.