$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) "
$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;
}
push @paths, $path;
}
- $log->info( "Adding " . join( ', ', map {"«$_»"} @paths ) );
+ $log->notice( "Adding " . join( ', ', map {"«$_»"} @paths ) );
# MPD needs raw bytes
utf8::encode($_) for @paths;