Skip to content

Commit 46ecf3b

Browse files
committed
Add extra logging of RUBY_DESCRIPTION.
1 parent 59e4db8 commit 46ecf3b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

lib/falcon/command/serve.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ def client
120120
def call
121121
Console.logger.info(self) do |buffer|
122122
buffer.puts "Falcon v#{VERSION} taking flight! Using #{self.container_class} #{self.container_options}."
123+
buffer.puts "- Running on #{RUBY_DESCRIPTION}"
123124
buffer.puts "- Binding to: #{self.endpoint}"
124125
buffer.puts "- To terminate: Ctrl-C or kill #{Process.pid}"
125126
buffer.puts "- To reload configuration: kill -HUP #{Process.pid}"

lib/falcon/command/virtual.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ def configuration
5151
def call
5252
Console.logger.info(self) do |buffer|
5353
buffer.puts "Falcon Virtual v#{VERSION} taking flight!"
54+
buffer.puts "- Running on #{RUBY_DESCRIPTION}"
5455
buffer.puts "- To terminate: Ctrl-C or kill #{Process.pid}"
5556
buffer.puts "- To reload all sites: kill -HUP #{Process.pid}"
5657
end

0 commit comments

Comments
 (0)