Disable some logs

This commit is contained in:
StrikerX3 2018-12-10 18:19:01 -02:00
parent 0fc7143228
commit db16858dea
2 changed files with 2 additions and 2 deletions

View file

@ -189,7 +189,7 @@ void PacketProtocolCommand::ProcessPacket() {
return;
}
log_spew("PacketProtocolCommand::ProcessPacket: Processing command 0x%x\n", cdb->opCode.u8);
//log_spew("PacketProtocolCommand::ProcessPacket: Processing command 0x%x\n", cdb->opCode.u8);
// Instantiate the command.
// This will also allocate the data buffer if necessary.

View file

@ -70,7 +70,7 @@ bool Read10::BeginTransfer() {
m_lastByte = m_currentByte + transferLengthBytes;
m_buffer = new uint8_t[m_transferLength];
log_spew("Read10::BeginTransfer: Starting transfer: 0x%llx to 0x%llx\n", m_currentByte, m_lastByte);
//log_spew("Read10::BeginTransfer: Starting transfer: 0x%llx to 0x%llx\n", m_currentByte, m_lastByte);
// Read from media
return Execute();