summaryrefslogtreecommitdiff
path: root/nuttx/arch/c5471/src/up_assert.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/c5471/src/up_assert.c')
-rw-r--r--nuttx/arch/c5471/src/up_assert.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/arch/c5471/src/up_assert.c b/nuttx/arch/c5471/src/up_assert.c
index 570a80ad6..678bb4f27 100644
--- a/nuttx/arch/c5471/src/up_assert.c
+++ b/nuttx/arch/c5471/src/up_assert.c
@@ -155,10 +155,10 @@ void up_assert(const ubyte *filename, int lineno)
up_ledon(LED_ASSERTION);
#if CONFIG_TASK_NAME_SIZE > 0
- dbg("Assertion failed at file:%s line: %d task: %s\n",
+ lldbg("Assertion failed at file:%s line: %d task: %s\n",
filename, lineno, rtcb->name);
#else
- dbg("Assertion failed at file:%s line: %d\n",
+ lldbg("Assertion failed at file:%s line: %d\n",
filename, lineno);
#endif
up_stackdump();
@@ -177,10 +177,10 @@ void up_assert_code(const ubyte *filename, int lineno, int errorcode)
up_ledon(LED_ASSERTION);
#if CONFIG_TASK_NAME_SIZE > 0
- dbg("Assertion failed at file:%s line: %d task: %s error code: %d\n",
+ lldbg("Assertion failed at file:%s line: %d task: %s error code: %d\n",
filename, lineno, rtcb->name, errorcode);
#else
- dbg("Assertion failed at file:%s line: %d error code: %d\n",
+ lldbg("Assertion failed at file:%s line: %d error code: %d\n",
filename, lineno, errorcode);
#endif
up_stackdump();