A versão 1.1 do Vagrant foi lançada. A documentação que você está lendo é para o Vagrant 1.0.x. Leia mais sobre o Vagrant 1.1 no anúncio de lançamento. Acesse agora a documentação da versão 1.1.

Debugging

If you run into issues with Vagrant, enabling logging can divulge helpful information in order to troubleshoot your issues. To enable logging, the VAGRANT_LOG environmental variable must be set to the desired log level name, such as INFO or DEBUG. For example, on linux systems:

$ VAGRANT_LOG=INFO vagrant up

On Windows, you must use set to set an environmental variable:

> set VAGRANT_LOG=INFO
> vagrant up

Users are encouraged to start with the INFO level, as it adds a significant amount of additional information over the default output without becoming unreadable.

If you plan on submitting a bug report or an issue, please attach DEBUG level log output of the command that fails.