less exceptions printed on stdout
authorgc <gc>
Thu, 29 May 2008 21:22:08 +0000 (21:22 +0000)
committergc <gc>
Thu, 29 May 2008 21:22:08 +0000 (21:22 +0000)
ext/rbbooh.cc

index 59e50579438c955b57e369cc27c7b72790fed125..10ff24ae75f3db5a05c490aec8b3ba85cdd07860 100644 (file)
@@ -133,7 +133,8 @@ static VALUE exif_datetimeoriginal(VALUE module, VALUE filename) {
                 }
                 return Qnil;
         } catch (Exiv2::AnyError& e) {
-                std::cout << "Caught Exiv2 exception: " << e << "\n";
+                // actually, I don't care about exceptions because I will try non JPG images
+                // std::cout << "Caught Exiv2 exception: " << e << "\n";
                 return Qnil;
         }
 }