Mention --ignore_unsupported_sandboxing in the warning message about unavailable sandboxing.

--
MOS_MIGRATED_REVID=102042098
diff --git a/src/main/java/com/google/devtools/build/lib/sandbox/SandboxModule.java b/src/main/java/com/google/devtools/build/lib/sandbox/SandboxModule.java
index 0821786..5287405 100644
--- a/src/main/java/com/google/devtools/build/lib/sandbox/SandboxModule.java
+++ b/src/main/java/com/google/devtools/build/lib/sandbox/SandboxModule.java
@@ -43,7 +43,7 @@
   public static final String SANDBOX_NOT_SUPPORTED_MESSAGE =
       "Sandboxed execution is not supported on your system and thus hermeticity of actions cannot "
           + "be guaranteed. See http://bazel.io/docs/bazel-user-manual.html#sandboxing for more "
-          + "information";
+          + "information. You can turn off this warning via --ignore_unsupported_sandboxing";
 
   @Override
   public Iterable<ActionContextProvider> getActionContextProviders() {