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 sh...@apache.org on 2008/04/04 17:48:34 UTC

svn commit: r644739 - in /webservices/rampart/trunk/c/src: trust/context.c util/rampart_replay_detector.c util/rampart_sec_header_builder.c

Author: shankar
Date: Fri Apr  4 08:48:34 2008
New Revision: 644739

URL: http://svn.apache.org/viewvc?rev=644739&view=rev
Log:
Info messages

Modified:
    webservices/rampart/trunk/c/src/trust/context.c
    webservices/rampart/trunk/c/src/util/rampart_replay_detector.c
    webservices/rampart/trunk/c/src/util/rampart_sec_header_builder.c

Modified: webservices/rampart/trunk/c/src/trust/context.c
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/src/trust/context.c?rev=644739&r1=644738&r2=644739&view=diff
==============================================================================
--- webservices/rampart/trunk/c/src/trust/context.c (original)
+++ webservices/rampart/trunk/c/src/trust/context.c Fri Apr  4 08:48:34 2008
@@ -197,11 +197,11 @@
         trust_context->rst_node = trust_rst_build_rst(trust_context->rst, env, NULL);        
 		if(trust_context->rst_node)
 		{
-			AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, "Node Not NULL");
+			AXIS2_LOG_INFO(env->log, "Node Not NULL");
 		}
 		else
 		{
-			AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, "Node -- NULL");
+			AXIS2_LOG_INFO(env->log, "Node -- NULL");
 		}
 
         return trust_context->rst_node;

Modified: webservices/rampart/trunk/c/src/util/rampart_replay_detector.c
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/src/util/rampart_replay_detector.c?rev=644739&r1=644738&r2=644739&view=diff
==============================================================================
--- webservices/rampart/trunk/c/src/util/rampart_replay_detector.c (original)
+++ webservices/rampart/trunk/c/src/util/rampart_replay_detector.c Fri Apr  4 08:48:34 2008
@@ -95,7 +95,7 @@
         return ll;
     }else{
         ll = rampart_replay_detector_set_ll_db(env, ctx);
-        AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, "[rampart][rrd] Cannot get the property %s from msg_ctx. Creating a new DB", RAMPART_RD_DB_PROP);
+        AXIS2_LOG_INFO(env->log, "[rampart][rrd] Cannot get the property %s from msg_ctx. Creating a new DB", RAMPART_RD_DB_PROP);
         return ll;
     }
 }
@@ -130,7 +130,7 @@
         return hash;
     }else{
         hash = rampart_replay_detector_set_default_db(env, ctx);
-        AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, "[rampart][rrd] Cannot get the property %s from msg_ctx. Creating a new DB", RAMPART_RD_DB_PROP);
+        AXIS2_LOG_INFO(env->log, "[rampart][rrd] Cannot get the property %s from msg_ctx. Creating a new DB", RAMPART_RD_DB_PROP);
         return hash;
     }
 }

Modified: webservices/rampart/trunk/c/src/util/rampart_sec_header_builder.c
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/src/util/rampart_sec_header_builder.c?rev=644739&r1=644738&r2=644739&view=diff
==============================================================================
--- webservices/rampart/trunk/c/src/util/rampart_sec_header_builder.c (original)
+++ webservices/rampart/trunk/c/src/util/rampart_sec_header_builder.c Fri Apr  4 08:48:34 2008
@@ -575,7 +575,7 @@
         axis2_status_t status = AXIS2_FAILURE;
 
         /*Do Symmetric_binding specific things*/
-        AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, "[rampart][shb] Symmetric Binding. ");
+        AXIS2_LOG_INFO(env->log, "[rampart][shb] Symmetric Binding. ");
         status = rampart_shb_do_symmetric_binding(env, msg_ctx, rampart_context, soap_envelope, sec_node, sec_ns_obj, sign_parts_list);
 		axiom_namespace_free(sec_ns_obj, env);
         if(AXIS2_FAILURE == status){