X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Ftarget%2Farm_semihosting.c;h=723be577ef83b9fc89cfa09a2585f7fc5bab6821;hp=61f1e7801f443b5daa3044f0db491a3bc681c3f1;hb=850e85fa6fec275cb9f2bc76faefee51136e878e;hpb=9cce6b3c763e883faea545b9ffbda19ec8164804 diff --git a/src/target/arm_semihosting.c b/src/target/arm_semihosting.c index 61f1e7801f..723be577ef 100644 --- a/src/target/arm_semihosting.c +++ b/src/target/arm_semihosting.c @@ -315,7 +315,7 @@ int arm_semihosting(struct target *target, int *retval) if (0 <= semihosting->op && semihosting->op <= 0x31) { *retval = semihosting_common(target); if (*retval != ERROR_OK) { - LOG_ERROR("Failed semihosting operation"); + LOG_ERROR("Failed semihosting operation (0x%02X)", semihosting->op); return 0; } } else {