Explorar el Código

Always log full request sense response

androda hace 2 años
padre
commit
980fb0b3f3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/BlueSCSI_initiator.cpp

+ 1 - 1
src/BlueSCSI_initiator.cpp

@@ -459,7 +459,7 @@ bool scsiRequestSense(int target_id, uint8_t *sense_key)
                                          response, sizeof(response),
                                          NULL, 0);
 
-    debuglog("RequestSense response: ", bytearray(response, 18));
+    log("RequestSense response: ", bytearray(response, 18));
 
     *sense_key = response[2];
     return status == 0;