Sure thing! Here is the .xslt file:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="
http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text" />
<xsl:strip-space elements="*" />
<xsl:variable name="newline">
<xsl:text> </xsl:text>
</xsl:variable>
<xsl:template match="/">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="LogEventCollection">
<xsl:for-each select="LogEvent">
<xsl:text>RT1=</xsl:text>
<xsl:choose>
<xsl:when test="@Type='SONG'">
<xsl:value-of select="Asset/@Title" />
<xsl:text> by </xsl:text>
<xsl:value-of select="Asset/@Artist1" />
</xsl:when>
<xsl:otherwise>
<xsl:text>FAITH RADIO</xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:value-of select="$newline" />
</xsl:for-each>
<xsl:apply-templates />
</xsl:template>
</xsl:stylesheet>
This is the output file:
RT1=New Song 1 by Artist Name 1 Song 1
RT1=New Song 2 by Artist Name 1 Song 2
RT1=FAITH RADIO
RT1=FAITH RADIO