The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
The C<loud_update()> subroutine adds feedback:

=begin code

sub loud_update ($who, $status) {
    say "$who -> $status";

    silent_update($who, $status);
}

=end code