From: Scott Cantor Date: Sat, 22 Sep 2007 04:08:59 +0000 (+0000) Subject: Log exceptions during verify loop. X-Git-Tag: 2.0-beta2~38 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-opensaml.git;a=commitdiff_plain;h=a9e98c3b9a6721ed98fa811f46c7b3833a1b56e8 Log exceptions during verify loop. --- diff --git a/samlsign/samlsign.cpp b/samlsign/samlsign.cpp index 04ceb52..1683edd 100644 --- a/samlsign/samlsign.cpp +++ b/samlsign/samlsign.cpp @@ -265,7 +265,8 @@ int main(int argc,char* argv[]) good = true; break; } - catch (exception&) { + catch (exception& e) { + log.info("error trying verification key: %s", e.what()); } } if (!good)