diff -urN poldek-0.32.2.org/conf/poldek.conf poldek-0.32.2/conf/poldek.conf --- poldek-0.32.2.org/conf/poldek.conf 2016-02-03 22:02:49.000000000 +0100 +++ poldek-0.32.2/conf/poldek.conf 2017-11-23 09:21:23.347551541 +0100 @@ -15,7 +15,7 @@ # External downloaders configuration, not necessary in most cases, cause # to internal HTTP and FTP client. -#%include fetch.conf +%include fetch.conf [global] diff -urN poldek-0.32.2.org/vfile/fetch.c poldek-0.32.2/vfile/fetch.c --- poldek-0.32.2.org/vfile/fetch.c 2016-01-30 15:05:57.000000000 +0100 +++ poldek-0.32.2/vfile/fetch.c 2017-11-23 09:38:01.044442691 +0100 @@ -163,7 +163,9 @@ if (vf_find_external_command(p, PATH_MAX, path, NULL)) path = p; else { - vf_logerr("%s: command not found\n", path); + if (*vfile_verbose > 1) { + vf_logerr("%s: command not found\n", path); + } return NULL; } } @@ -494,7 +496,9 @@ } if ((ftch = ffetcher_new(name, protocols, cmd)) == NULL) { - vf_logerr("External downloader '%s': registration failed\n", cmd); + if (*vfile_verbose > 1) { + vf_logerr("External downloader '%s': registration failed\n", cmd); + } } else { if (ffetchers == NULL) {