mirror of
https://github.com/pdewacht/brlaser
synced 2025-04-06 12:56:44 +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:
parent
718053fa36
commit
f1e0b2df54
@ -158,7 +158,7 @@ int main(int argc, char *argv[]) {
|
|||||||
|
|
||||||
ras = cupsRasterOpen(fd, CUPS_RASTER_READ);
|
ras = cupsRasterOpen(fd, CUPS_RASTER_READ);
|
||||||
if (!ras) {
|
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;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user