Skip to content

Commit

Permalink
Minor format change to debugging output
Browse files Browse the repository at this point in the history
  • Loading branch information
pemsley committed Oct 10, 2024
1 parent 4a9836d commit 3bdeb5c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions coords/Bond_lines.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2016,7 +2016,6 @@ Bond_lines_container::add_link_bond(mmdb::Model *model_p,
std::cout << "calling add_link_bond with LINK "
<< "\"" << link->chainID1 << "\""
<< " " << link->seqNum1 << " "
<< "\"" << link->seqNum1 << "\""
<< "\"" << link->atName1 << "\""
<< " to "
<< "\"" << link->chainID2 << "\""
Expand Down Expand Up @@ -2191,9 +2190,11 @@ Bond_lines_container::add_link_bond_templ(mmdb::Model *model_p, int udd_atom_ind
}
} else {
if (! atom_1)
std::cout << "debug:: in add_link_bond_templ() failed to find atom-1 \"" << link->atName1 << "\"" << std::endl;
std::cout << "debug:: in add_link_bond_templ() failed to find atom-1 "
<< "\"" << link->chainID1 << "\" " << link->seqNum1 << " \"" << link->atName1 << "\"" << std::endl;
if (! atom_2)
std::cout << "debug:: in add_link_bond_templ() failed to find atom-2 \"" << link->atName2 << "\"" << std::endl;
std::cout << "debug:: in add_link_bond_templ() failed to find atom-2 "
<< "\"" << link->chainID2 << "\" " << link->seqNum2 << " \"" << link->atName2 << "\"" << std::endl;
}
}

Expand Down

0 comments on commit 3bdeb5c

Please sign in to comment.