[fdb] Fix assert log not output problem when FDB_DEBUG_ENABLE is disable.

This commit is contained in:
朱天龙 (Armink)
2023-03-27 22:13:33 +08:00
parent d1c5243873
commit 6630bbf23e
+1 -1
View File
@@ -65,7 +65,7 @@ extern "C" {
#define FDB_ASSERT(EXPR) \
if (!(EXPR)) \
{ \
FDB_DEBUG("(%s) has assert failed at %s.\n", #EXPR, __func__); \
FDB_INFO("(%s) has assert failed at %s.\n", #EXPR, __FUNCTION__); \
while (1); \
}