If you're using Mule 3.3, you can utilize MEL and simplify logger statement like this:
<logger message="#[message.inboundProperties['MULE_REMOTE_CLIENT_ADDRESS']]" level="INFO" doc:name="Logger"/>
To pass IP address to XSLT, store it in a variable and pass that.
<set-variable variableName="remoteClientAddress" value = "#[message.inboundProperties['MULE_REMOTE_CLIENT_ADDRESS']]"/>
Display with logger
<logger message="Remote client address is------> #[remoteClientAddress]" level="INFO" doc:name="Logger"/>
Pass it to XSLT as:
<xm:xslt-transformer xsl-file="xsltFileName.xslt">
<xm:context-property key="remoteClientAddress" value="#[remoteClientAddress]"/>
</xm:xslt-transformer>
In your XSLT, declare a param variable
<xsl:param name="remoteClientAddress" />
and then use this variable as
<xsl:value-of select="$remoteClientAddress" />