Merge pull request #6991 from jzohrab/debugging_docs

Add debugging log docs.
This commit is contained in:
Seth Vargo 2016-02-07 12:57:56 -05:00
commit ea6e21a550
1 changed files with 6 additions and 0 deletions

View File

@ -57,3 +57,9 @@ option. For example:
```
$ vagrant up --debug
```
Redirect the log output using `&>` to capture both stdout and stderr:
```
$ vagrant up --provision --debug &> vagrant.log
```