diff options
| author | 2021-04-14 21:29:44 -0700 | |
|---|---|---|
| committer | 2021-04-14 21:29:44 -0700 | |
| commit | 60511976bb721415180854a400571433f33e9abe (patch) | |
| tree | dbe65815775e1e9f0179746ef04ce52d893cd667 /src/common/logging/text_formatter.h | |
| parent | Merge pull request #6196 from bunnei/asserts-setting (diff) | |
| parent | log/backend: Correct order of const in copy constructor (diff) | |
| download | yuzu-60511976bb721415180854a400571433f33e9abe.tar.gz yuzu-60511976bb721415180854a400571433f33e9abe.tar.xz yuzu-60511976bb721415180854a400571433f33e9abe.zip | |
Merge pull request #6199 from lioncash/log-ns
common/log: Move Log namespace into the Common namespace
Diffstat (limited to 'src/common/logging/text_formatter.h')
| -rw-r--r-- | src/common/logging/text_formatter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/logging/text_formatter.h b/src/common/logging/text_formatter.h index b6d9e57c8..171e74cfe 100644 --- a/src/common/logging/text_formatter.h +++ b/src/common/logging/text_formatter.h | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | #include <cstddef> | 7 | #include <cstddef> |
| 8 | #include <string> | 8 | #include <string> |
| 9 | 9 | ||
| 10 | namespace Log { | 10 | namespace Common::Log { |
| 11 | 11 | ||
| 12 | struct Entry; | 12 | struct Entry; |
| 13 | 13 | ||
| @@ -17,4 +17,4 @@ std::string FormatLogMessage(const Entry& entry); | |||
| 17 | void PrintMessage(const Entry& entry); | 17 | void PrintMessage(const Entry& entry); |
| 18 | /// Prints the same message as `PrintMessage`, but colored according to the severity level. | 18 | /// Prints the same message as `PrintMessage`, but colored according to the severity level. |
| 19 | void PrintColoredMessage(const Entry& entry); | 19 | void PrintColoredMessage(const Entry& entry); |
| 20 | } // namespace Log | 20 | } // namespace Common::Log |