@@ -382,12 +382,12 @@ MediaStatus MythCDROMLinux::checkMedia()
382382 switch (driveStatus ())
383383 {
384384 case CDS_DISC_OK:
385- VERBOSE (VB_MEDIA, m_DevicePath + " Disk OK, type = "
385+ VERBOSE (VB_MEDIA|VB_EXTRA , m_DevicePath + " Disk OK, type = "
386386 + MediaTypeString (m_MediaType) );
387387 // further checking is required
388388 break ;
389389 case CDS_TRAY_OPEN:
390- VERBOSE (VB_MEDIA, m_DevicePath + " Tray open or no disc" );
390+ VERBOSE (VB_MEDIA|VB_EXTRA , m_DevicePath + " Tray open or no disc" );
391391 // First, send a message to the
392392 // plugins to forget the current media type
393393 setStatus (MEDIASTAT_OPEN, OpenedHere);
@@ -396,13 +396,13 @@ MediaStatus MythCDROMLinux::checkMedia()
396396 return MEDIASTAT_OPEN;
397397 break ;
398398 case CDS_NO_DISC:
399- VERBOSE (VB_MEDIA, m_DevicePath + " No disc" );
399+ VERBOSE (VB_MEDIA|VB_EXTRA , m_DevicePath + " No disc" );
400400 m_MediaType = MEDIATYPE_UNKNOWN;
401401 return setStatus (MEDIASTAT_NODISK, OpenedHere);
402402 break ;
403403 case CDS_NO_INFO:
404404 case CDS_DRIVE_NOT_READY:
405- VERBOSE (VB_MEDIA, m_DevicePath + " No info or drive not ready" );
405+ VERBOSE (VB_MEDIA|VB_EXTRA , m_DevicePath + " No info or drive not ready" );
406406 m_MediaType = MEDIATYPE_UNKNOWN;
407407 return setStatus (MEDIASTAT_UNKNOWN, OpenedHere);
408408 default :
0 commit comments