adding debug log messages to compare signature values
diff --git a/src/omxmlsec/signature.c b/src/omxmlsec/signature.c
index dccd4f0..d05f3a1 100644
--- a/src/omxmlsec/signature.c
+++ b/src/omxmlsec/signature.c
@@ -179,6 +179,8 @@
     signed_val = (axis2_char_t*)oxs_buffer_get_data(output_buf, env);
 	oxs_buffer_free(input_buf, env);
     /*Compare the output with the signature. If tally; SUCCESS*/
+    AXIS2_LOG_DEBUG(env->log, AXIS2_LOG_SI, "[RAMPART]Signature received [%s]", signature);
+    AXIS2_LOG_DEBUG(env->log, AXIS2_LOG_SI, "[RAMPART]Signature calculated [%s]", signed_val);
     if(axutil_strcmp(signature, signed_val) == 0){
 		oxs_buffer_free(output_buf, env);
         return AXIS2_SUCCESS;