aboutsummaryrefslogtreecommitdiffstats
path: root/src/logging.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-01-23 09:37:15 +0000
committerGravatar Sadie Powell2023-01-23 13:07:53 +0000
commit7edc627317599950cbbc7442f5d0c781203a014b (patch)
tree4a38b88b01459eb21c49c16e0eed7ad18b59d083 /src/logging.cpp
parentReplace InspIRCd::Format with fmt::format. (diff)
Replace VAFORMAT/InspIRCd::Format/... with fmt::sprintf.
Diffstat (limited to 'src/logging.cpp')
-rw-r--r--src/logging.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/logging.cpp b/src/logging.cpp
index 5b1806188..3e9a22554 100644
--- a/src/logging.cpp
+++ b/src/logging.cpp
@@ -290,8 +290,3 @@ void Log::Manager::Write(Level level, const std::string& type, const std::string
cache.emplace_back(time, level, type, message);
logging = false;
}
-
-void Log::Manager::Write(Level level, const std::string& type, const char* format, va_list& args)
-{
- Write(level, type, InspIRCd::Format(args, format));
-}