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; }