This commit is contained in:
Seth Vargo 2016-02-07 12:59:17 -05:00
parent ea6e21a550
commit d5f2799649
1 changed files with 4 additions and 3 deletions

View File

@ -58,8 +58,9 @@ option. For example:
$ vagrant up --debug
```
Redirect the log output using `&>` to capture both stdout and stderr:
If you are saving the output to a file, you may need to redirect stderr and
stdout using `&>`:
```
$ vagrant up --provision --debug &> vagrant.log
```
$ vagrant up --debug &> vagrant.log
```