summaryrefslogtreecommitdiff
path: root/src/common/logging/text_formatter.h
diff options
context:
space:
mode:
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 8474a1904..5b82f043f 100644
--- a/src/common/logging/text_formatter.h
+++ b/src/common/logging/text_formatter.h
@@ -5,11 +5,9 @@
5#pragma once 5#pragma once
6 6
7#include <cstddef> 7#include <cstddef>
8#include <memory>
9 8
10namespace Log { 9namespace Log {
11 10
12class Logger;
13struct Entry; 11struct Entry;
14 12
15/** 13/**
@@ -31,10 +29,4 @@ void PrintMessage(const Entry& entry);
31/// Prints the same message as `PrintMessage`, but colored acoording to the severity level. 29/// Prints the same message as `PrintMessage`, but colored acoording to the severity level.
32void PrintColoredMessage(const Entry& entry); 30void PrintColoredMessage(const Entry& entry);
33 31
34/**
35 * Logging loop that repeatedly reads messages from the provided logger and prints them to the
36 * console. It is the baseline barebones log outputter.
37 */
38void TextLoggingLoop(std::shared_ptr<Logger> logger);
39
40} 32}