1
0
mirror of https://github.com/pdewacht/brlaser synced 2025-04-05 12:36:43 +02:00

Reduce log level of cupsRasterOpen failure

If cupsRasterOpen fails, the most likely cause is that some earlier
filter didn't produce any output. If we output an error-level message
in this situation, we'll likely displace some earlier, more useful
message by the other filter.
This commit is contained in:
Peter De Wachter 2017-11-02 00:06:58 +01:00
parent 718053fa36
commit f1e0b2df54

View File

@ -158,7 +158,7 @@ int main(int argc, char *argv[]) {
ras = cupsRasterOpen(fd, CUPS_RASTER_READ);
if (!ras) {
fprintf(stderr, "ERROR: " PACKAGE ": Can't read raster data\n");
fprintf(stderr, "DEBUG: " PACKAGE ": Cannot read raster data. Most likely an earlier filter in the pipeline failed.\n");
return 1;
}