diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/odr-padenc.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/odr-padenc.cpp b/src/odr-padenc.cpp index a42d62d..93aaeb6 100644 --- a/src/odr-padenc.cpp +++ b/src/odr-padenc.cpp @@ -1272,6 +1272,11 @@ int encodeFile(int output_fd, const std::string& fname, int fidx, bool raw_slide blobsize = ftell(pFile); rewind(pFile); + if (verbose) { + fprintf(stderr, "ODR-PadEnc image: '%s' (id=%d). Raw file: %zu Bytes\n", + fname.c_str(), fidx, blobsize); + } + if (blobsize > MAXSLIDESIZE) { fprintf(stderr, "ODR-PadEnc Warning: blob in raw-slide '%s' too large\n", fname.c_str()); |