Print CIDs on device connect
This commit is contained in:
@@ -311,7 +311,7 @@ std::vector<uint8_t> RawDevice::_respondToReport
|
||||
int RawDevice::_sendReport(const std::vector<uint8_t>& report)
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(_dev_io);
|
||||
if(logid::global_loglevel == LogLevel::RAWREPORT) {
|
||||
if(logid::global_loglevel <= LogLevel::RAWREPORT) {
|
||||
printf("[RAWREPORT] %s OUT: ", _path.c_str());
|
||||
for(auto &i : report)
|
||||
printf("%02x ", i);
|
||||
@@ -389,7 +389,7 @@ int RawDevice::_readReport(std::vector<uint8_t> &report,
|
||||
if(0 == ret)
|
||||
throw backend::TimeoutError();
|
||||
|
||||
if(logid::global_loglevel == LogLevel::RAWREPORT) {
|
||||
if(logid::global_loglevel <= LogLevel::RAWREPORT) {
|
||||
printf("[RAWREPORT] %s IN: ", _path.c_str());
|
||||
for(auto &i : report)
|
||||
printf("%02x ", i);
|
||||
|
Reference in New Issue
Block a user