Skip to content

Commit

Permalink
Logging updates
Browse files Browse the repository at this point in the history
  • Loading branch information
davglass committed Apr 3, 2012
1 parent 6862cc8 commit 28274c4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/loader/loader-extras.xml
Expand Up @@ -3,14 +3,14 @@

<property file="loader.meta.properties" />
<target name="loader">
<echo level="info">Custom YUI Loader Build Task: ${component.builddir}</echo>
<echo level="verbose">Custom YUI Loader Build Task: ${component.builddir}</echo>

<for param="file">
<path>
<fileset dir="${component.builddir}/" includes="*.js"/>
</path>
<sequential>
<echo level="info">Filtering: @{file}</echo>
<echo level="verbose">Filtering: @{file}</echo>
<move file="@{file}" tofile="@{file}.tmp" />
<move file="@{file}.tmp" tofile="@{file}">
<filterchain>
Expand Down
2 changes: 1 addition & 1 deletion src/yui/Makefile
@@ -1,7 +1,7 @@
all: aliases build docmods

build:
ant all
ant all -q -Djshint.skip=true

alias: aliases

Expand Down
10 changes: 5 additions & 5 deletions src/yui/core-extras.xml
Expand Up @@ -25,19 +25,19 @@
</macrodef>

<target name="core">
<echo level="info">Custom YUI Core Build Task: ${component.builddir}</echo>
<echo level="verbose">Custom YUI Core Build Task: ${component.builddir}</echo>
<prop2array from="yui.core" to="component.core" />
<echo level="info">Setting core to: ${yui.core}</echo>
<echo level="info">Setting core to: ${component.core}</echo>
<echo level="verbose">Setting core to: ${yui.core}</echo>
<echo level="verbose">Setting core to: ${component.core}</echo>


<for param="file">
<path>
<fileset dir="${component.builddir}/" includes="*.js"/>
</path>
<sequential>
<echo level="info">Filtering: @{file}, replacing @YUI_CORE@ with:</echo>
<echo level="info">${yui.core}</echo>
<echo level="verbose">Filtering: @{file}, replacing @YUI_CORE@ with:</echo>
<echo level="verbose">${yui.core}</echo>
<move file="@{file}" tofile="@{file}.tmp" />
<move file="@{file}.tmp" tofile="@{file}">
<filterchain>
Expand Down

0 comments on commit 28274c4

Please sign in to comment.