1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Author: A Mennucc1 <mennucc1@debian.org>
Forwarded: no
Bug-Debian: http://bugs.debian.org/407992
Last-Update: 2008-09-28
Description: Don't print missing executable warnings in normal mode
--- fuzzyocr-3.5.1+svn135.orig/FuzzyOcr/Config.pm
+++ fuzzyocr-3.5.1+svn135/FuzzyOcr/Config.pm
@@ -629,7 +629,8 @@
if (defined $conf->{$b}) {
infolog("Using $a => $conf->{$b}");
} else {
- warnlog("Cannot find executable for $a");
+ #do not fill logs
+ debuglog("Cannot find executable for $a");
}
}
}
|