in reply to Usage of File::Tail::Multi generates conversion errors

The first arg of printf should be a formatting string.

printf("%s", "$line\n"); # ok printf("%s\n", $line); # ok printf("$line\n"); # ERROR
You want print.
print("$line\n");