common/log: Move Log namespace into the Common namespace

Forgot to move this over when I moved the rest of the source files with
lacking namespaces over.
This commit is contained in:
Lioncash 2023-06-24 01:51:16 +03:00 committed by GPUCode
parent 4fd0cbebdb
commit b4c38372d1
18 changed files with 66 additions and 54 deletions

View file

@ -12,7 +12,7 @@
#include "common/logging/filter.h"
#include "common/logging/log.h"
namespace Log {
namespace Common::Log {
/**
* A log entry. Log entries are store in a structured format to permit more varied output
@ -143,4 +143,4 @@ const char* GetLogClassName(Class log_class);
*/
const char* GetLevelName(Level log_level);
} // namespace Log
} // namespace Common::Log