소스 검색

Move these messages to debug as to not confuse users that think they are errors

Eric Helgeson 3 달 전
부모
커밋
345235423c
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      lib/BlueSCSI_platform_RP2MCU/BlueSCSI_platform_msc.cpp

+ 3 - 3
lib/BlueSCSI_platform_RP2MCU/BlueSCSI_platform_msc.cpp

@@ -121,7 +121,7 @@ bool platform_sense_msc() {
   }
 #endif
 
-  logmsg("Waiting for USB enumeration to enter Card Reader mode.");
+  dbgmsg("Waiting for USB enumeration to enter Card Reader mode.");
 
   // wait for up to a second to be enumerated
   uint32_t start = millis();
@@ -131,8 +131,8 @@ bool platform_sense_msc() {
   {
     if ((uint32_t)(millis() - start) > usb_timeout)
     {
-      logmsg("Waiting for USB enumeration timed out after ", usb_timeout, "ms.");
-      logmsg("-- Try increasing 'USBMassStorageWaitPeriod' in the ", CONFIGFILE);
+      dbgmsg("Waiting for USB enumeration timed out after ", usb_timeout, "ms.");
+      dbgmsg("-- Try increasing 'USBMassStorageWaitPeriod' in the ", CONFIGFILE);
       timed_out = true;
       break;
     }