mirror of
https://github.com/pdewacht/brlaser
synced 2025-04-05 04:26: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);
|
||||
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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user