convert some LOG_INFO()'s during stepping into LOG_DEBUG()

git-svn-id: svn://svn.berlios.de/openocd/trunk@1552 b42882b7-edfa-0310-969c-e2dbd0fdcd60
__archive__
oharboe 2009-04-28 07:33:50 +00:00
parent 9ba80f08f4
commit e8240209fe
1 changed files with 9 additions and 9 deletions

View File

@ -906,7 +906,7 @@ int arm11_step(struct target_s *target, int current, u32 address, int handle_bre
if (!current) if (!current)
R(PC) = address; R(PC) = address;
LOG_INFO("STEP PC %08x%s", R(PC), !current ? "!" : ""); LOG_DEBUG("STEP PC %08x%s", R(PC), !current ? "!" : "");
/** \todo TODO: Thumb not supported here */ /** \todo TODO: Thumb not supported here */
@ -920,7 +920,7 @@ int arm11_step(struct target_s *target, int current, u32 address, int handle_bre
R(PC) += 4; R(PC) += 4;
arm11->reg_list[ARM11_RC_PC].valid = 1; arm11->reg_list[ARM11_RC_PC].valid = 1;
arm11->reg_list[ARM11_RC_PC].dirty = 0; arm11->reg_list[ARM11_RC_PC].dirty = 0;
LOG_INFO("Skipping BKPT"); LOG_DEBUG("Skipping BKPT");
} }
/* skip over Wait for interrupt / Standby */ /* skip over Wait for interrupt / Standby */
/* mcr 15, 0, r?, cr7, cr0, {4} */ /* mcr 15, 0, r?, cr7, cr0, {4} */
@ -929,12 +929,12 @@ int arm11_step(struct target_s *target, int current, u32 address, int handle_bre
R(PC) += 4; R(PC) += 4;
arm11->reg_list[ARM11_RC_PC].valid = 1; arm11->reg_list[ARM11_RC_PC].valid = 1;
arm11->reg_list[ARM11_RC_PC].dirty = 0; arm11->reg_list[ARM11_RC_PC].dirty = 0;
LOG_INFO("Skipping WFI"); LOG_DEBUG("Skipping WFI");
} }
/* ignore B to self */ /* ignore B to self */
else if ((next_instruction & 0xFEFFFFFF) == 0xeafffffe) else if ((next_instruction & 0xFEFFFFFF) == 0xeafffffe)
{ {
LOG_INFO("Not stepping jump to self"); LOG_DEBUG("Not stepping jump to self");
} }
else else
{ {
@ -1331,13 +1331,13 @@ int arm11_add_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
if (!arm11->free_brps) if (!arm11->free_brps)
{ {
LOG_INFO("no breakpoint unit available for hardware breakpoint"); LOG_DEBUG("no breakpoint unit available for hardware breakpoint");
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE; return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
} }
if (breakpoint->length != 4) if (breakpoint->length != 4)
{ {
LOG_INFO("only breakpoints of four bytes length supported"); LOG_DEBUG("only breakpoints of four bytes length supported");
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE; return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
} }