summaryrefslogtreecommitdiffstats
path: root/src/common/logging/text_formatter.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-05-12 07:19:44 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-05-12 07:31:04 +0200
commitb88c91dd3d03f1a452cdd48f0db4e010cb150753 (patch)
tree17ddf674e020be69d03cc1c3c49c3e041377603b /src/common/logging/text_formatter.h
parentMerge pull request #748 from Subv/tls_max (diff)
downloadyuzu-b88c91dd3d03f1a452cdd48f0db4e010cb150753.tar
yuzu-b88c91dd3d03f1a452cdd48f0db4e010cb150753.tar.gz
yuzu-b88c91dd3d03f1a452cdd48f0db4e010cb150753.tar.bz2
yuzu-b88c91dd3d03f1a452cdd48f0db4e010cb150753.tar.lz
yuzu-b88c91dd3d03f1a452cdd48f0db4e010cb150753.tar.xz
yuzu-b88c91dd3d03f1a452cdd48f0db4e010cb150753.tar.zst
yuzu-b88c91dd3d03f1a452cdd48f0db4e010cb150753.zip
Diffstat (limited to '')
-rw-r--r--src/common/logging/text_formatter.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/common/logging/text_formatter.h b/src/common/logging/text_formatter.h
index 8474a1904..5b82f043f 100644
--- a/src/common/logging/text_formatter.h
+++ b/src/common/logging/text_formatter.h
@@ -5,11 +5,9 @@
#pragma once
#include <cstddef>
-#include <memory>
namespace Log {
-class Logger;
struct Entry;
/**
@@ -31,10 +29,4 @@ void PrintMessage(const Entry& entry);
/// Prints the same message as `PrintMessage`, but colored acoording to the severity level.
void PrintColoredMessage(const Entry& entry);
-/**
- * Logging loop that repeatedly reads messages from the provided logger and prints them to the
- * console. It is the baseline barebones log outputter.
- */
-void TextLoggingLoop(std::shared_ptr<Logger> logger);
-
}