The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package main;

use Test::More;
use Log::Minimal;

eval {
    croakf "foo";
};
like $@, qr/ERROR/;

eval {
    croakff "foo";
};
like $@, qr/ERROR/;

done_testing;