Remove some traces logged as part of application load.

During reboot, existing certificates are loaded to create
certificate objects causing too many log statements.

Removing some of the log statements not critical for debugging
purpose to minimise the log statements.

Signed-off-by: Marri Devender Rao <devenrao@in.ibm.com>
Change-Id: Id68298ee95f35c3f8a24178699dfd84a225ddf3a
diff --git a/certificate.cpp b/certificate.cpp
index 2490159..076fbd6 100644
--- a/certificate.cpp
+++ b/certificate.cpp
@@ -534,8 +534,6 @@
 
 X509_Ptr Certificate::loadCert(const std::string& filePath)
 {
-    log<level::INFO>("Certificate loadCert",
-                     entry("FILEPATH=%s", filePath.c_str()));
     // Read Certificate file
     X509_Ptr cert(X509_new(), ::X509_free);
     if (!cert)