Can i suppress error message from fetch.pm in Perl

前端 未结 2 893
轻奢々
轻奢々 2021-01-23 16:49

When using Fetch to download a url from Teamcity I get a Fetch failed! error. But the download of the file actually works.

They have recently changed permissions of our

2条回答
  •  难免孤独
    2021-01-23 17:04

    As the documentation explains, just set

    $File::Fetch::WARN = 0;
    

    to suppress warnings.

提交回复
热议问题