]> git.ktnx.net Git - mpd-feeder.git/commitdiff
more log priority adjustments
authorDamyan Ivanov <dmn@debian.org>
Sat, 27 Nov 2021 07:05:30 +0000 (09:05 +0200)
committerDamyan Ivanov <dmn@debian.org>
Sat, 27 Nov 2021 07:05:30 +0000 (09:05 +0200)
lib/App/MPD/Feeder.pm

index 9aa1c008e0f43d28b42936ba86b47d28f864f49e..b6c82033a2f11cfe9cdde3208aa092f35dae8f60 100644 (file)
@@ -181,7 +181,7 @@ method update_db( $force = undef ) {
             $new_songs,   $new_artists,   $new_albums
         ) = $self->db->finish_update;
 
-        $log->info(
+        $log->notice(
             "Updated data about $song_count songs (including $new_songs new), "
                 . "$total_artists artists (including $new_artists new) "
 
@@ -206,12 +206,12 @@ method queue_songs( $num = undef ) {
         $present = scalar(@$present);
 
         if ( $present < $opt->target_queue_length ) {
-            $log->info( "Playlist contains $present songs. Wanted: "
+            $log->notice( "Playlist contains $present songs. Wanted: "
                     . $opt->target_queue_length );
             $self->queue_songs( $opt->target_queue_length - $present );
         }
         else {
-            $log->notice("Playlist contains $present songs");
+            $log->info("Playlist contains $present songs");
             $playlist_needs_filling = 0;
         }
 
@@ -240,7 +240,7 @@ method queue_songs( $num = undef ) {
         push @paths, $path;
     }
 
-    $log->info( "Adding " . join( ', ', map {"«$_»"} @paths ) );
+    $log->notice( "Adding " . join( ', ', map {"«$_»"} @paths ) );
 
     # MPD needs raw bytes
     utf8::encode($_) for @paths;