diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-12-05 11:50:30 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-12-05 16:14:07 +0200 |
commit | c4cc31b5b55019aabad4045c8174b45e1b27073a (patch) | |
tree | 76ba9e70c0f3ab9e158cedc4729faae0e7d42a98 | |
parent | 161681e40bc281404275e12b775e8267fe790100 (diff) |
Remove noise SAL_WARNs that were not warnings, just informative messages
SAL_DEBUG is what should be used for stuff like that (and not committed).
Change-Id: I08505418bf9b55082e0d7672b85f3f76262dbad0
-rw-r--r-- | vcl/source/gdi/pdfwriter_impl.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.cxx b/vcl/source/gdi/pdfwriter_impl.cxx index 565d290c6196..f8cc4a201a8c 100644 --- a/vcl/source/gdi/pdfwriter_impl.cxx +++ b/vcl/source/gdi/pdfwriter_impl.cxx @@ -6031,8 +6031,6 @@ bool PDFWriterImpl::finalizeSignature() return false; } - SAL_WARN("vcl.pdfwriter", "PDF Signing: Certificate Subject: " << cert->subjectName << "\n\tCertificate Issuer: " << cert->issuerName); - // Prepare buffer and calculate PDF file digest CHECK_RETURN( (osl::File::E_None == m_aFile.setPos(osl_Pos_Absolut, 0)) ); @@ -6137,8 +6135,6 @@ bool PDFWriterImpl::finalizeSignature() return false; } - SAL_WARN("vcl.pdfwriter","PKCS7 Object created successfully!"); - SECItem cms_output; cms_output.data = 0; cms_output.len = 0; @@ -6153,22 +6149,18 @@ bool PDFWriterImpl::finalizeSignature() SAL_WARN("vcl.pdfwriter", "PDF Signing: can't start DER encoder."); return false; } - SAL_WARN("vcl.pdfwriter", "PDF Signing: Started DER encoding."); if (NSS_CMSEncoder_Finish(cms_ecx) != SECSuccess) { SAL_WARN("vcl.pdfwriter", "PDF Signing: can't finish DER encoder."); return false; } - SAL_WARN("vcl.pdfwriter", "PDF Signing: Finished DER encoding."); OStringBuffer cms_hexbuffer; for (unsigned int i = 0; i < cms_output.len ; i++) appendHex(cms_output.data[i], cms_hexbuffer); - SAL_WARN("vcl.pdfwriter","PKCS7 object encoded successfully!"); - // Set file pointer to the m_nSignatureContentOffset, we're ready to overwrite PKCS7 object nWritten = 0; CHECK_RETURN( (osl::File::E_None == m_aFile.setPos(osl_Pos_Absolut, m_nSignatureContentOffset)) ); |