From 255608d9c55ba5251ecde2b920f8bc045da07662 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 3 Dec 2013 23:44:08 -0800 Subject: [PATCH] core: note Ruby and RubyGems version in logs --- lib/vagrant.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/vagrant.rb b/lib/vagrant.rb index 826663f1b..e8f2f16c0 100644 --- a/lib/vagrant.rb +++ b/lib/vagrant.rb @@ -58,6 +58,8 @@ require 'openssl' require 'vagrant/version' global_logger = Log4r::Logger.new("vagrant::global") global_logger.info("Vagrant version: #{Vagrant::VERSION}") +global_logger.info("Ruby version: #{RUBY_VERSION}") +global_logger.info("RubyGems version: #{Gem::VERSION}") # We need these components always so instead of an autoload we # just require them explicitly here.