Skip to content

Commit

Permalink
Moved some debug messages to trace severity
Browse files Browse the repository at this point in the history
  • Loading branch information
azonenberg committed Jul 23, 2018
1 parent be63e01 commit 2ed8d77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ARMDebugMemAccessPort.cpp
Expand Up @@ -211,7 +211,7 @@ void ARMDebugMemAccessPort::LoadROMTable(uint32_t baseAddress)
}
catch(const JtagException& e)
{
LogWarning("Failed to read ROM table entry at i=%d, addr=0x%08x\n", i, entryAddr);
LogTrace("Failed to read ROM table line at i=%d, addr=0x%08x\n", i, entryAddr);
break;
}
if(entry == 0)
Expand Down Expand Up @@ -353,7 +353,7 @@ void ARMDebugMemAccessPort::LoadROMTable(uint32_t baseAddress)
}
catch(const JtagException& e)
{
LogWarning("Failed to read ROM table entry at 0x%08x, skipping...\n", address);
LogTrace("Failed to read ROM table target at 0x%08x, skipping...\n", address);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion JtagInterface.cpp
Expand Up @@ -281,7 +281,7 @@ void JtagInterface::InitializeChain()
//Skip chips with bad IDCODEs
if(!(idcode & 0x1))
{
LogWarning("Invalid IDCODE %08x at index %zu, ignoring...\n", idcode, i);
//LogWarning("Invalid IDCODE %08x at index %zu, ignoring...\n", idcode, i);
idcode_bits ++;
m_idcodes.push_back(0);
continue;
Expand Down

0 comments on commit 2ed8d77

Please sign in to comment.