Skip to content

Commit 1e89b9c

Browse files
committed
Remove unnecessary debug output
1 parent 7cb31f1 commit 1e89b9c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/openexr.imageio/exrinput.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -673,13 +673,11 @@ OpenEXRInput::PartInfo::parse_header (const Imf::Header *header)
673673
int r[2];
674674
r[0] = n;
675675
r[1] = static_cast<int>(d);
676-
OIIO::debug ("adding rational with numerator %d and denominator %u (easy case)", n, d);
677676
spec.attribute (oname, TypeRational, r);
678677
} else if (int f = static_cast<int>(boost::math::gcd<long int>(rational[0], rational[1])) > 1) {
679678
int r[2];
680679
r[0] = n / f;
681680
r[1] = static_cast<int>(d / f);
682-
OIIO::debug ("adding rational with numerator %d and denominator %u (hard case)", n, d);
683681
spec.attribute (oname, TypeRational, r);
684682
} else {
685683
// TODO: find a way to allow the client to accept "close" rational values

0 commit comments

Comments
 (0)