From 8d2072da9c3eca11782b5dc96b2210ca1106e833 Mon Sep 17 00:00:00 2001 From: David Rose Date: Sun, 6 Sep 2009 22:56:53 +0000 Subject: [PATCH] info severity too noisy --- panda/src/express/openSSLWrapper.cxx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/panda/src/express/openSSLWrapper.cxx b/panda/src/express/openSSLWrapper.cxx index 8f52d8684a..ba69cb79e4 100644 --- a/panda/src/express/openSSLWrapper.cxx +++ b/panda/src/express/openSSLWrapper.cxx @@ -95,9 +95,11 @@ load_certificates(const Filename &filename) { return 0; } - express_cat.info() - << "Appending " << result << " SSL certificates from " - << filename << "\n"; + if (express_cat.is_debug()) { + express_cat.debug() + << "Appending " << result << " SSL certificates from " + << filename << "\n"; + } return result; }