diff --git a/deps/ox/src/ox/std/trace.hpp b/deps/ox/src/ox/std/trace.hpp index 7dbaaea1..1f6f7fcb 100644 --- a/deps/ox/src/ox/std/trace.hpp +++ b/deps/ox/src/ox/std/trace.hpp @@ -268,7 +268,7 @@ using TraceStream = NullStream; inline void logError(const char *file, int line, const char *fmt, const Error &err) noexcept { if (err) { - TraceStream trc(file, line, "ox::error"); + TraceStream trc(file, line, "ox.error"); if (err.src.file_name() != nullptr) { trc << "Error: (" << err.src.file_name() << ":" << err.src.line() << "):"; } else { @@ -280,7 +280,7 @@ inline void logError(const char *file, int line, const char *fmt, const Error &e inline void logError(const char *file, int line, const Error &err) noexcept { if (err) { - TraceStream trc(file, line, "ox::error"); + TraceStream trc(file, line, "ox.error"); trc << "Error:" << err; if (err.src.file_name() != nullptr) { trc << "(" << err.src.file_name() << ":" << err.src.line() << ")";