From 4ced71b1f12af591af2d58f915ffe69b5e9eace2 Mon Sep 17 00:00:00 2001 From: Tim Newsome Date: Tue, 28 Jun 2016 13:11:33 -0700 Subject: [PATCH] Log more. --- src/target/riscv/riscv.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/target/riscv/riscv.c b/src/target/riscv/riscv.c index 2a86fa6b2..d9b8ee380 100644 --- a/src/target/riscv/riscv.c +++ b/src/target/riscv/riscv.c @@ -1754,7 +1754,8 @@ static int riscv_write_memory(struct target *target, uint32_t address, dbus_busy++; break; } - LOG_DEBUG("j=%d data=%09" PRIx64, j, buf_get_u64(in + 8*j, DBUS_DATA_START, DBUS_DATA_SIZE)); + LOG_DEBUG("j=%d status=%d data=%09" PRIx64, j, status, + buf_get_u64(in + 8*j, DBUS_DATA_START, DBUS_DATA_SIZE)); } if (dbus_busy) { increase_dbus_busy_delay(target);