diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-06 23:00:08 +0100 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-13 05:08:06 +0100 |
commit | 0e0a007a2503d468391004c8ea2faae305232345 (patch) | |
tree | 75feea527bd46aa4c534b77b560c89d538757f7f /src/common/logging/text_formatter.h | |
parent | Convert old logging calls to new logging macros (diff) | |
download | yuzu-0e0a007a2503d468391004c8ea2faae305232345.tar yuzu-0e0a007a2503d468391004c8ea2faae305232345.tar.gz yuzu-0e0a007a2503d468391004c8ea2faae305232345.tar.bz2 yuzu-0e0a007a2503d468391004c8ea2faae305232345.tar.lz yuzu-0e0a007a2503d468391004c8ea2faae305232345.tar.xz yuzu-0e0a007a2503d468391004c8ea2faae305232345.tar.zst yuzu-0e0a007a2503d468391004c8ea2faae305232345.zip |
Diffstat (limited to 'src/common/logging/text_formatter.h')
-rw-r--r-- | src/common/logging/text_formatter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/logging/text_formatter.h b/src/common/logging/text_formatter.h index 04164600f..d7e298e28 100644 --- a/src/common/logging/text_formatter.h +++ b/src/common/logging/text_formatter.h @@ -11,6 +11,7 @@ namespace Log { class Logger; struct Entry; +class Filter; /** * Attempts to trim an arbitrary prefix from `path`, leaving only the part starting at `root`. It's @@ -33,6 +34,6 @@ void PrintMessage(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); +void TextLoggingLoop(std::shared_ptr<Logger> logger, const Filter* filter); } |