You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rampart-dev@ws.apache.org by ka...@apache.org on 2007/09/14 07:20:27 UTC

svn commit: r575536 - in /webservices/rampart/trunk/c/src/omxmlsec: axiom.c transforms_factory.c xml_signature.c

Author: kaushalye
Date: Thu Sep 13 22:20:25 2007
New Revision: 575536

URL: http://svn.apache.org/viewvc?rev=575536&view=rev
Log:
Some INFO logs should be DEBUG

Modified:
    webservices/rampart/trunk/c/src/omxmlsec/axiom.c
    webservices/rampart/trunk/c/src/omxmlsec/transforms_factory.c
    webservices/rampart/trunk/c/src/omxmlsec/xml_signature.c

Modified: webservices/rampart/trunk/c/src/omxmlsec/axiom.c
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/src/omxmlsec/axiom.c?rev=575536&r1=575535&r2=575536&view=diff
==============================================================================
--- webservices/rampart/trunk/c/src/omxmlsec/axiom.c (original)
+++ webservices/rampart/trunk/c/src/omxmlsec/axiom.c Thu Sep 13 22:20:25 2007
@@ -105,7 +105,7 @@
     if(axiom_node_get_node_type(node, env) != AXIOM_ELEMENT){return NULL;}
 
     temp_name = axiom_util_get_localname(node, env);
-    AXIS2_LOG_INFO(env->log, "[rampart][axiom] Checking node %s for %s", temp_name, local_name );
+    AXIS2_LOG_DEBUG(env->log, AXIS2_LOG_SI, "[rampart][axiom] Checking node %s for %s", temp_name, local_name );
 
     if(0 == axutil_strcmp(temp_name, local_name) ){
         /*Gottcha.. return this node*/

Modified: webservices/rampart/trunk/c/src/omxmlsec/transforms_factory.c
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/src/omxmlsec/transforms_factory.c?rev=575536&r1=575535&r2=575536&view=diff
==============================================================================
--- webservices/rampart/trunk/c/src/omxmlsec/transforms_factory.c (original)
+++ webservices/rampart/trunk/c/src/omxmlsec/transforms_factory.c Thu Sep 13 22:20:25 2007
@@ -45,8 +45,7 @@
     doc = axiom_node_get_document(input, env);
     algo = OXS_HREF_TRANSFORM_XML_EXC_C14N;
     oxs_c14n_apply_algo(env, doc, &c14nized, NULL, input, algo);
-    /*oxs_c14n_apply(env, doc, AXIS2_FALSE, &c14nized, AXIS2_TRUE, NULL, (axiom_node_t*)input);*/
-    AXIS2_LOG_INFO(env->log, "[rampart][c14n-OutPut] is\n\n%s\n\n",c14nized);
+    AXIS2_LOG_DEBUG(env->log, AXIS2_LOG_SI, "[rampart][c14n-OutPut] is\n\n%s\n\n",c14nized);
     *output= c14nized;
     output_dtype = OXS_TRANSFORM_TYPE_CHAR;
     return output_dtype;

Modified: webservices/rampart/trunk/c/src/omxmlsec/xml_signature.c
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/src/omxmlsec/xml_signature.c?rev=575536&r1=575535&r2=575536&view=diff
==============================================================================
--- webservices/rampart/trunk/c/src/omxmlsec/xml_signature.c (original)
+++ webservices/rampart/trunk/c/src/omxmlsec/xml_signature.c Thu Sep 13 22:20:25 2007
@@ -209,7 +209,7 @@
 
     /*oxs_c14n_apply(env, doc, AXIS2_FALSE, &c14nized, AXIS2_TRUE, NULL, signed_info_node); */
     oxs_c14n_apply_algo(env, doc,  &c14nized, NULL, signed_info_node, c14n_algo);
-    AXIS2_LOG_INFO(env->log, "[oxs][xml_sig] C14N (sig)= %s ", c14nized );
+    AXIS2_LOG_DEBUG(env->log, AXIS2_LOG_SI, "[oxs][xml_sig] C14N (sig)= %s ", c14nized );
 
     /*Then serialize <SignedInfo>*/
     serialized_signed_info = c14nized; /*axiom_node_to_string(signed_info_node, env);*/