You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by dj...@apache.org on 2009/06/23 02:03:09 UTC

svn commit: r787467 - /buildr/trunk/lib/buildr/shell.rb

Author: djspiewak
Date: Tue Jun 23 00:03:09 2009
New Revision: 787467

URL: http://svn.apache.org/viewvc?rev=787467&view=rev
Log:
Added a snibblet of tracing

Modified:
    buildr/trunk/lib/buildr/shell.rb

Modified: buildr/trunk/lib/buildr/shell.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/shell.rb?rev=787467&r1=787466&r2=787467&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/shell.rb (original)
+++ buildr/trunk/lib/buildr/shell.rb Tue Jun 23 00:03:09 2009
@@ -31,6 +31,7 @@
         load_provider = proc do |prov|
           name = prov.to_sym
           
+          trace "Defining task #{project.name}:shell:#{name}"
           project.task "shell:#{name}" => :compile do
             trace "Launching #{name} shell"
             prov.new(project).launch
@@ -52,7 +53,7 @@
       if default_shell
         dep = "shell:#{default_shell.to_sym}"
         
-        trace "Defining :shell task based on #{dep}"
+        trace "Defining task shell based on #{dep}"
         project.task :shell => dep
       else
         project.task :shell do