diff options
| author | 2013-04-12 02:10:06 +0100 | |
|---|---|---|
| committer | 2013-04-12 02:21:19 +0100 | |
| commit | 645f7e18c64a6628ede880dc69bf8825ba93b375 (patch) | |
| tree | 88fdf155712654b0c783bb53770d8e80e28b0d10 /src/modules/m_spanningtree/hmac.cpp | |
| parent | Merge pull request #487 from SaberUK/master+better-isupport-api (diff) | |
Add LOG_ prefix to the log level enum values.
Diffstat (limited to 'src/modules/m_spanningtree/hmac.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/hmac.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/hmac.cpp b/src/modules/m_spanningtree/hmac.cpp index 65b3a5997..8dc18cbbd 100644 --- a/src/modules/m_spanningtree/hmac.cpp +++ b/src/modules/m_spanningtree/hmac.cpp @@ -65,7 +65,7 @@ std::string TreeSocket::MakePass(const std::string &password, const std::string return "AUTH:" + BinToBase64(sha256->hmac(password, challenge)); if (!challenge.empty() && !sha256) - ServerInstance->Logs->Log("m_spanningtree",DEFAULT,"Not authenticating to server using SHA256/HMAC because we don't have m_sha256 loaded!"); + ServerInstance->Logs->Log("m_spanningtree",LOG_DEFAULT,"Not authenticating to server using SHA256/HMAC because we don't have m_sha256 loaded!"); return password; } |
