simple_chrome_workflow.md: Change suggestion for turning DCHECKs on.

In my experience, the recommendation of turning DCHECKs on is
problematic for many developers, especially newcomers. I think we
should highlight that DCHECKs most likely will result is random crashes
and that it's a choice to turn them on to help development collectively.

See related bugs:
- crbug.com/913750
- crbug.com/905882

Change-Id: Ie1b55a62c2b918a03a12fcb580bc56f5e202e910
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/docs/+/2178471
Reviewed-by: Achuith Bhandarkar <[email protected]>
Reviewed-by: James Cook <[email protected]>
Commit-Queue: Achuith Bhandarkar <[email protected]>
Tested-by: Achuith Bhandarkar <[email protected]>
diff --git a/simple_chrome_workflow.md b/simple_chrome_workflow.md
index f10f2ef..0567385 100644
--- a/simple_chrome_workflow.md
+++ b/simple_chrome_workflow.md
@@ -102,8 +102,15 @@
 *   `--nogn-gen` Do not run 'gn gen' automatically. Use this option to persist
     changes made to a previous session's gn args.
 
-**Chrome OS developers**: Please set `dcheck_always_on=true` and file bugs if
-you encounter any DCHECK crashes.
+**Chrome OS developers**
+
+Use the following command:
+```
+(shell) cros chrome-sdk --internal --board=$BOARD --log-level=info
+```
+
+*Optional*: Please help development by setting `dcheck_always_on=true` and filing
+bugs if you encounter any DCHECK crashes:
 ```
 (shell) cros chrome-sdk --internal --board=$BOARD --log-level=info --gn-extra-args='dcheck_always_on=true'
 ```