X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Debbugs%2FUTF8.pm;fp=Debbugs%2FUTF8.pm;h=0c4d33619dce695ab2de3b0a6c6bd1eba97fba94;hb=55e320bcc73b6ef5c40b70d02dc69049a7e4c1e8;hp=0ad284df16a6d37794098c5c67de37b70613b835;hpb=fe722dd85af217866efcac48ba48ad33c95ed6db;p=debbugs.git diff --git a/Debbugs/UTF8.pm b/Debbugs/UTF8.pm index 0ad284d..0c4d336 100644 --- a/Debbugs/UTF8.pm +++ b/Debbugs/UTF8.pm @@ -179,7 +179,8 @@ sub convert_to_utf8 { # if there's an à (0xC3), it's probably something # horrible, and we shouldn't try to convert it. if (defined $call_back_data and $call_back_data !~ /\x{C3}/) { - warn "failed to convert to utf8 (charset: $charset, data: $data), but succeeded with ISO8859-1: ".encode_utf8($call_back_data); + # this warning produces far too much useless output; elminating it + # warn "failed to convert to utf8 (charset: $charset, data: $data), but succeeded with ISO8859-1: ".encode_utf8($call_back_data); return $call_back_data; } }