]> git.sesse.net Git - vlc/commitdiff
Fixed msg_Info abuses.
authorLaurent Aimar <fenrir@videolan.org>
Wed, 11 Feb 2009 21:38:02 +0000 (22:38 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Wed, 11 Feb 2009 22:28:06 +0000 (23:28 +0100)
modules/services_discovery/mtp.c

index 55c104ea4f315dcf40778767e3eb3283fed009a4..ecffca5e25f5fa89c329c795ccc21f0f2612c86b 100644 (file)
@@ -147,7 +147,7 @@ static void *Run( void *data )
              i_status == 0 )
         {
             /* Found a new device, add it */
-            msg_Info( p_sd, "New device found" );
+            msg_Dbg( p_sd, "New device found" );
             if( AddDevice( p_sd, &p_rawdevices[0] ) == VLC_SUCCESS )
                 i_status = 1;
         }
@@ -191,7 +191,9 @@ static int AddDevice( services_discovery_t *p_sd,
         p_sd->p_sys->i_product_id = p_raw_device->device_entry.product_id;
         if( ( p_track = LIBMTP_Get_Tracklisting_With_Callback( p_device,
                             CountTracks, p_sd ) ) == NULL )
-            msg_Info( p_sd, "No tracks on the device" );
+        {
+            msg_Warn( p_sd, "No tracks on the device" );
+        }
         else
         {
             if( !( p_sd->p_sys->pp_items = calloc( p_sd->p_sys->i_tracks_num,
@@ -214,7 +216,7 @@ static int AddDevice( services_discovery_t *p_sd,
     }
     else
     {
-        msg_Info( p_sd, "No device found, after all" );
+        msg_Warn( p_sd, "No device found, after all" );
         return VLC_EGENERIC;
     }
 }