Show 'Could not extract thumb from ...' only in verbose mode, closes #4984
This commit is contained in:
@@ -421,7 +421,9 @@ Thumbnail* Thumbnail::loadQuickFromRaw (const Glib::ustring& fname, RawMetaDataL
|
|||||||
|
|
||||||
// did we succeed?
|
// did we succeed?
|
||||||
if ( err ) {
|
if ( err ) {
|
||||||
printf ("Could not extract thumb from %s\n", fname.data());
|
if (options.rtSettings.verbose) {
|
||||||
|
std::cout << "Could not extract thumb from " << fname.c_str() << std::endl;
|
||||||
|
}
|
||||||
delete tpp;
|
delete tpp;
|
||||||
delete img;
|
delete img;
|
||||||
delete ri;
|
delete ri;
|
||||||
|
Reference in New Issue
Block a user