Skip to content

Commit

Permalink
Reducing verbosity of memory_limit expression. (#801)
Browse files Browse the repository at this point in the history
  • Loading branch information
grasmash authored Dec 16, 2016
1 parent 4248ddf commit 76d085d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions phing/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

<!--Increase PHP memory limit. -->
<property name="php.memory_limit" value="2G" override="false" />
<echo>Setting memory allocation to ${php.memory_limit}</echo>
<php expression="ini_set('memory_limit', '${php.memory_limit}');"/>
<echo level="verbose">Setting memory allocation to ${php.memory_limit}</echo>
<php expression="ini_set('memory_limit', '${php.memory_limit}');" level="verbose"/>

<!--@todo Warn if Windows is being used.-->

Expand Down

0 comments on commit 76d085d

Please sign in to comment.