Removed debug sections

This commit is contained in:
John Reese 2011-01-13 23:01:27 -05:00
parent 828b51bb32
commit cbcaeaa9c8
1 changed files with 1 additions and 17 deletions

View File

@ -19,9 +19,6 @@
#error This module needs ZNC 0.072 or newer. #error This module needs ZNC 0.072 or newer.
#endif #endif
#define DEBUG_HOST 0
#define DEBUG_LOGGING 0
class CNotifoMod : public CModule class CNotifoMod : public CModule
{ {
protected: protected:
@ -55,15 +52,9 @@ class CNotifoMod : public CModule
app = "ZNC"; app = "ZNC";
crlf = "\r\n"; crlf = "\r\n";
#if DEBUG_HOST notifo_auth = "";
notifo_host = "notifo.leetcode.net";
notifo_url = "/index.php";
#else
notifo_host = "api.notifo.com"; notifo_host = "api.notifo.com";
notifo_url = "/v1/send_notification"; notifo_url = "/v1/send_notification";
#endif
notifo_auth = "";
user_agent = "ZNC To Notifo"; user_agent = "ZNC To Notifo";
// Current user // Current user
@ -146,13 +137,6 @@ class CNotifoMod : public CModule
sock->Write(request); sock->Write(request);
sock->Close(Csock::CLT_AFTERWRITE); sock->Close(Csock::CLT_AFTERWRITE);
AddSocket(sock); AddSocket(sock);
#if DEBUG_LOGGING
// Log the HTTP request
FILE *fh = fopen("/tmp/notifo.log", "a");
fputs(request.c_str(), fh);
fclose(fh);
#endif
} }
/** /**