Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge pull request #166 from hawkular/mazz/hawkular-292
Browse files Browse the repository at this point in the history
HAWKULAR-292 fix XSL so it doesn't put xmlns:logging all over the place
  • Loading branch information
jkremser committed Jun 1, 2015
2 parents 530a16b + a58d65e commit 94fde62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dist/src/main/resources/wildfly/patches/standalone.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
xmlns:ds="urn:jboss:domain:datasources:2.0"
xmlns:ra="urn:jboss:domain:resource-adapters:2.0"
xmlns:ejb3="urn:jboss:domain:ejb3:2.0"
xmlns:logging="urn:jboss:domain:logging:2.0"
version="2.0"
exclude-result-prefixes="xalan ds ra ejb3">

Expand Down Expand Up @@ -117,7 +116,8 @@
</xsl:template>

<!-- set the console log level -->
<xsl:template match="logging:console-handler[@name='CONSOLE']/logging:level">
<xsl:template match="logging:console-handler[@name='CONSOLE']/logging:level"
xmlns:logging="urn:jboss:domain:logging:2.0">
<xsl:choose>
<xsl:when test="$kettle.build.type='dev'"><level name="DEBUG"/></xsl:when>
<xsl:otherwise><level name="INFO"/></xsl:otherwise>
Expand Down

0 comments on commit 94fde62

Please sign in to comment.