aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/logging/text_formatter.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2015-05-15 20:54:48 -0700
committerGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2015-05-15 20:54:48 -0700
commitba2fe7f795ebc8da4acd247436afeefb900645d3 (patch)
treebe9a2cbcdd840f41be5353a33a98bff3ca31544e /src/common/logging/text_formatter.h
parent742fd191a955d9971b527b25f366820ff5ddbf7b (diff)
parent7dbc27ff57d24a1c4e04e3f8cc35773ff9288516 (diff)
Merge pull request #758 from yuriks/sync-logging
Common: Remove async logging
Diffstat (limited to 'src/common/logging/text_formatter.h')
-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 8474a190..5b82f043 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);
-
}