about summary refs log tree commit homepage
path: root/lib/mongrel/command.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mongrel/command.rb')
-rw-r--r--lib/mongrel/command.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/mongrel/command.rb b/lib/mongrel/command.rb
index a3ee57d..d99208e 100644
--- a/lib/mongrel/command.rb
+++ b/lib/mongrel/command.rb
@@ -55,14 +55,14 @@ module Mongrel
         # I need to add my own -h definition to prevent the -h by default from exiting.
         @opt.on_tail("-h", "--help", "Show this message") do
           @done_validating = true
-          puts @opt
+          Mongrel.log(:info, @opt)
         end
 
         # I need to add my own -v definition to prevent the -v from exiting by default as well.
         @opt.on_tail("--version", "Show version") do
           @done_validating = true
           if VERSION
-            puts "Version #{Mongrel::Const::MONGREL_VERSION}"
+            Mongrel.log(:info, "Version #{Mongrel::Const::MONGREL_VERSION}")
           end
         end
 
@@ -155,17 +155,17 @@ module Mongrel
 
       # Prints a list of available commands.
       def print_command_list
-        puts "#{Mongrel::Command::BANNER}\nAvailable commands are:\n\n"
+        Mongrel.log(:info, "#{Mongrel::Command::BANNER}\nAvailable commands are:\n\n")
 
         self.commands.each do |name|
           if /mongrel::/ =~ name
             name = name[9 .. -1]
           end
 
-          puts " - #{name[1 .. -1]}\n"
+          Mongrel.log(:info, " - #{name[1 .. -1]}\n")
         end
 
-        puts "\nEach command takes -h as an option to get help."
+        Mongrel.log(:info, "\nEach command takes -h as an option to get help.")
 
       end
 
@@ -180,7 +180,7 @@ module Mongrel
           print_command_list
           return true
         elsif cmd_name == "--version"
-          puts "Mongrel Web Server #{Mongrel::Const::MONGREL_VERSION}"
+          Mongrel.log(:info, "Mongrel Web Server #{Mongrel::Const::MONGREL_VERSION}")
           return true
         end