aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-01-28 21:51:16 -0800
committerbunnei <bunneidev@gmail.com>2021-01-28 21:51:16 -0800
commit8d1afcb90f59e000467466cd03e42f1488f5e44a (patch)
treeef52c0cd0a96f7734bb924f9f6e2f179dd356dfd /src
parentc8fe8247ee8a8e236680f033dac132c76a15a319 (diff)
common: common_funcs: Change R_UNLESS to LOG_ERROR.
Diffstat (limited to 'src')
-rw-r--r--src/common/common_funcs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h
index 71d136d4ae..71b64e32a3 100644
--- a/src/common/common_funcs.h
+++ b/src/common/common_funcs.h
@@ -98,7 +98,7 @@ __declspec(dllimport) void __stdcall DebugBreak(void);
{ \
if (!(expr)) { \
if (res.IsError()) { \
- LOG_CRITICAL(Kernel, "Failed with error {}", res.raw); \
+ LOG_ERROR(Kernel, "Failed with result: {}", res.raw); \
} \
return res; \
} \