diff options
| author | 2013-08-04 07:08:41 -0700 | |
|---|---|---|
| committer | 2013-08-04 07:08:41 -0700 | |
| commit | 36f93c0e7f8a980943237b0b28138ade86f5e573 (patch) | |
| tree | 1136c86e37046d5717bbb9aea97ae558ef4adbe2 /src/modules/m_httpd.cpp | |
| parent | Remove a few not-so-useful debug messages (diff) | |
| parent | Modify the log message to contain the log type. (diff) | |
Merge pull request #590 from SaberUK/master+module-logging
Change modules to use the MODNAME constant.
Diffstat (limited to 'src/modules/m_httpd.cpp')
| -rw-r--r-- | src/modules/m_httpd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_httpd.cpp b/src/modules/m_httpd.cpp index 88dd3f47b..a04abd5e6 100644 --- a/src/modules/m_httpd.cpp +++ b/src/modules/m_httpd.cpp @@ -216,7 +216,7 @@ class HttpServerSocket : public BufferedSocket if (reqbuffer.length() >= 8192) { - ServerInstance->Logs->Log("m_httpd", LOG_DEBUG, "m_httpd dropped connection due to an oversized request buffer"); + ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "m_httpd dropped connection due to an oversized request buffer"); reqbuffer.clear(); SetError("Buffer"); } |
