From d5f2799649ed1327a6f893576915e6a7eff104ba Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Sun, 7 Feb 2016 12:59:17 -0500 Subject: [PATCH] Grammar --- website/source/docs/other/debugging.html.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/website/source/docs/other/debugging.html.md b/website/source/docs/other/debugging.html.md index fe6865816..159d4e03b 100644 --- a/website/source/docs/other/debugging.html.md +++ b/website/source/docs/other/debugging.html.md @@ -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 -``` \ No newline at end of file +$ vagrant up --debug &> vagrant.log +```