Skip to content

Commit b844a35

Browse files
Turn off debug text in RPC_XML.cc
1 parent 150551f commit b844a35

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/asp/Camera/RPC_XML.cc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ void asp::ImageXML::parse( xercesc::DOMElement* node ) {
126126
tdi = 0;
127127
try {
128128
if (band_id == "P") {
129-
std::cout << "--try 2" << std::endl;
130129
DOMElement* band = get_node<DOMElement>(node, "BAND_P");
131130
parse_band_tdi(band, tdi);
132131
} else if (band_id == "Multi") {
@@ -500,10 +499,8 @@ void asp::RPCXML::parse_bbox( xercesc::DOMElement* root_node ) {
500499
DOMElement* imd_node = get_node<DOMElement>( root_node, "IMD" );
501500
DOMElement* bbox_node;
502501
try {
503-
std::cout << "---try 1" << std::endl;
504502
bbox_node = get_node<DOMElement>( imd_node, "BAND_P");
505503
} catch (...) { // Try one more channel if we can't find BAND_P
506-
std::cout << "--now in catch" << std::endl;
507504
bbox_node = get_node<DOMElement>( imd_node, "BAND_R");
508505
}
509506
// Start by initializing the box with the first point

0 commit comments

Comments
 (0)