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.cpp | |
| 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.cpp')
| -rw-r--r-- | src/common/logging/text_formatter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/logging/text_formatter.cpp b/src/common/logging/text_formatter.cpp index 6a0605c63..80ee2cca1 100644 --- a/src/common/logging/text_formatter.cpp +++ b/src/common/logging/text_formatter.cpp | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | #include "common/logging/text_formatter.h" | 16 | #include "common/logging/text_formatter.h" |
| 17 | #include "common/string_util.h" | 17 | #include "common/string_util.h" |
| 18 | 18 | ||
| 19 | namespace Log { | 19 | namespace Common::Log { |
| 20 | 20 | ||
| 21 | std::string FormatLogMessage(const Entry& entry) { | 21 | std::string FormatLogMessage(const Entry& entry) { |
| 22 | unsigned int time_seconds = static_cast<unsigned int>(entry.timestamp.count() / 1000000); | 22 | unsigned int time_seconds = static_cast<unsigned int>(entry.timestamp.count() / 1000000); |
| @@ -108,4 +108,4 @@ void PrintColoredMessage(const Entry& entry) { | |||
| 108 | #undef ESC | 108 | #undef ESC |
| 109 | #endif | 109 | #endif |
| 110 | } | 110 | } |
| 111 | } // namespace Log | 111 | } // namespace Common::Log |