summaryrefslogtreecommitdiffstats
path: root/src/common/logging/backend.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-04-27 22:10:37 +0200
committerLioncash <mathew1800@gmail.com>2018-04-27 22:18:34 +0200
commitd43c49264fd03f01eccb9527c950cf4710c50baa (patch)
tree2e6adfb519f0464963387e832b87cfb78c964ac8 /src/common/logging/backend.cpp
parentMerge pull request #408 from bunnei/shader-ints-p2 (diff)
downloadyuzu-d43c49264fd03f01eccb9527c950cf4710c50baa.tar
yuzu-d43c49264fd03f01eccb9527c950cf4710c50baa.tar.gz
yuzu-d43c49264fd03f01eccb9527c950cf4710c50baa.tar.bz2
yuzu-d43c49264fd03f01eccb9527c950cf4710c50baa.tar.lz
yuzu-d43c49264fd03f01eccb9527c950cf4710c50baa.tar.xz
yuzu-d43c49264fd03f01eccb9527c950cf4710c50baa.tar.zst
yuzu-d43c49264fd03f01eccb9527c950cf4710c50baa.zip
Diffstat (limited to '')
-rw-r--r--src/common/logging/backend.cpp20
1 files changed, 1 insertions, 19 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index 618be0864..aeb4249f8 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -2,11 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
-#include <algorithm>
-#include <array>
-#include <cstdio>
+#include <utility>
#include "common/assert.h"
-#include "common/common_funcs.h" // snprintf compatibility define
#include "common/logging/backend.h"
#include "common/logging/filter.h"
#include "common/logging/log.h"
@@ -132,21 +129,6 @@ void SetFilter(Filter* new_filter) {
filter = new_filter;
}
-void LogMessage(Class log_class, Level log_level, const char* filename, unsigned int line_num,
- const char* function, const char* format, ...) {
- if (filter && !filter->CheckMessage(log_class, log_level))
- return;
- std::array<char, 4 * 1024> formatting_buffer;
- va_list args;
- va_start(args, format);
- vsnprintf(formatting_buffer.data(), formatting_buffer.size(), format, args);
- va_end(args);
- Entry entry = CreateEntry(log_class, log_level, filename, line_num, function,
- std::string(formatting_buffer.data()));
-
- PrintColoredMessage(entry);
-}
-
void FmtLogMessageImpl(Class log_class, Level log_level, const char* filename,
unsigned int line_num, const char* function, const char* format,
const fmt::format_args& args) {