diff --git a/lib/vagrant/action/environment.rb b/lib/vagrant/action/environment.rb index 41f2ceb6e..cde414d33 100644 --- a/lib/vagrant/action/environment.rb +++ b/lib/vagrant/action/environment.rb @@ -29,11 +29,6 @@ module Vagrant @interrupted = false end - # Returns a logger associated with the environment. - def logger - env.logger - end - # Returns a UI object from the environment def ui env.ui diff --git a/test/vagrant/action/environment_test.rb b/test/vagrant/action/environment_test.rb index af12c8c6c..633ab4ecb 100644 --- a/test/vagrant/action/environment_test.rb +++ b/test/vagrant/action/environment_test.rb @@ -15,10 +15,6 @@ class ActionEnvironmentTest < Test::Unit::TestCase assert_equal "value", @instance["key"] end - should "setup the logger" do - assert_equal @instance.env.logger, @instance.logger - end - should "setup the UI" do assert_equal @instance.env.ui, @instance.ui end