summaryrefslogtreecommitdiff
path: root/modules/encryption/none.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/encryption/none.cpp')
-rw-r--r--modules/encryption/none.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/encryption/none.cpp b/modules/encryption/none.cpp
index 3b1f49d33..2e0ae8636 100644
--- a/modules/encryption/none.cpp
+++ b/modules/encryption/none.cpp
@@ -38,7 +38,7 @@ class ENone : public Module
Anope::string cpass;
Anope::B64Encode(src, cpass);
buf += cpass;
- Log(LOG_DEBUG_2) << "(enc_none) hashed password from [" << src << "] to [" << buf << "]";
+ logger.Debug2("hashed password from [{0}] to [{1}]", src, buf);
dest = buf;
return EVENT_ALLOW;
}