diff options
| author | 2013-05-18 11:35:10 -0700 | |
|---|---|---|
| committer | 2013-05-18 14:01:21 -0700 | |
| commit | 4e40ee49bba3f7bab05a58516e2039351fb33069 (patch) | |
| tree | 73961818b96646cfbe0a0ff945a23db04edc4823 /src/logger.cpp | |
| parent | Added macro to allow simpler logic in functions with the need to vsnprintf (diff) | |
Replaced vsnprintf with VAFORMAT pretty much everywhere.
Diffstat (limited to 'src/logger.cpp')
| -rw-r--r-- | src/logger.cpp | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/logger.cpp b/src/logger.cpp index b33f65ac4..2b0b623f6 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -296,18 +296,11 @@ bool LogManager::DelLogType(const std::string &type, LogStream *l) void LogManager::Log(const std::string &type, int loglevel, const char *fmt, ...) { if (Logging) - { return; - } - - va_list a; - static char buf[65536]; - - va_start(a, fmt); - vsnprintf(buf, 65536, fmt, a); - va_end(a); - this->Log(type, loglevel, std::string(buf)); + std::string buf; + VAFORMAT(buf, fmt, fmt); + this->Log(type, loglevel, buf); } void LogManager::Log(const std::string &type, int loglevel, const std::string &msg) |
