diff options
author | Winfidonarleyan <dowlandtop@yandex.com> | 2024-02-25 22:07:40 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-25 12:07:40 -0300 |
commit | 1768e4a633ef14290f5c4ece349c7ea2d7f5e578 (patch) | |
tree | 1863f877b8a080e2c8f1033426c6fbd66567bbee /src/common | |
parent | d72a71a4b2ec33f2891c712642adbc63bb201e61 (diff) |
chore(Common/Debugging): change report codestyle (#18383)
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/Debugging/Errors.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/Debugging/Errors.cpp b/src/common/Debugging/Errors.cpp index 007d8297f5..9ca5f8c294 100644 --- a/src/common/Debugging/Errors.cpp +++ b/src/common/Debugging/Errors.cpp @@ -62,16 +62,16 @@ namespace inline std::string MakeMessage(std::string_view messageType, std::string_view file, uint32 line, std::string_view function, std::string_view message, std::string_view fmtMessage = {}, std::string_view debugInfo = {}) { - std::string msg = Acore::StringFormatFmt("\n>> {}\n\n# Location '{}:{}'\n# Function '{}'\n# Condition '{}'\n", messageType, file, line, function, message); + std::string msg = Acore::StringFormatFmt("\n>> {}\n\n# Location: {}:{}\n# Function: {}\n# Condition: {}\n", messageType, file, line, function, message); if (!fmtMessage.empty()) { - msg.append(Acore::StringFormatFmt("# Message '{}'\n", fmtMessage)); + msg.append(Acore::StringFormatFmt("# Message: {}\n", fmtMessage)); } if (!debugInfo.empty()) { - msg.append(Acore::StringFormatFmt("\n# Debug info: '{}'\n", debugInfo)); + msg.append(Acore::StringFormatFmt("\n# Debug info: {}\n", debugInfo)); } return Acore::StringFormatFmt( |