diff --git a/doc/manual/opt-common-syn.xml b/doc/manual/opt-common-syn.xml
index f848ad249909154aa6f782632e6fb563adf8fa93..033189d0b91953a41c452502bf5a3216c0b5ae9b 100644
--- a/doc/manual/opt-common-syn.xml
+++ b/doc/manual/opt-common-syn.xml
@@ -2,8 +2,8 @@
 <arg><option>--version</option></arg>
 <arg rep='repeat'><option>--verbose</option></arg>
 <arg rep='repeat'><option>-v</option></arg>
-<arg><option>--build-output</option></arg>
-<arg><option>-B</option></arg>
+<arg><option>--no-build-output</option></arg>
+<arg><option>-Q</option></arg>
 <arg>
   <group choice='req'>
     <arg choice='plain'><option>--max-jobs</option></arg>
diff --git a/doc/manual/opt-common.xml b/doc/manual/opt-common.xml
index db8a60ecad6e699da80e7fbff1559495df9d614e..0cfd6ba215d2aa8bef3ab5ec10ecf22a42e46d67 100644
--- a/doc/manual/opt-common.xml
+++ b/doc/manual/opt-common.xml
@@ -50,7 +50,7 @@
           <para>
             <quote>Informational</quote>: print
             <emphasis>useful</emphasis> messages about what Nix is
-            doing.
+            doing.  This is the default.
           </para>
         </listitem>
       </varlistentry>
@@ -94,14 +94,13 @@
 
 
 <varlistentry>
-  <term><option>--build-output</option> / <option>-B</option></term>
+  <term><option>--no-build-output</option> / <option>-Q</option></term>
   <listitem>
     <para>
-      Causes the output written by build actions to standard output
-      and standard error to be echoed to standard error, regardless of
-      verbosity level.  By default, it is only echoed at a verbosity
-      level of at least 4 (<quote>Debug</quote>), and is suppressed at
-      lower levels.  Note that it is always written to a log file in
+      By default, output written by builders to standard output and
+      standard error is echoed to the Nix command's standard error.
+      This option suppresses this behaviour.  Note that the builder's
+      standard output and error are always written to a log file in
       <filename><replaceable>prefix</replaceable>/nix/var/log/nix</filename>.
     </para>
   </listitem>
diff --git a/src/libmain/shared.cc b/src/libmain/shared.cc
index 6aad03a37a98d86213d16e92f691bc419d6de6cd..3f9b2a10d4eadbb640692b7fd72dfc925504c7e6 100644
--- a/src/libmain/shared.cc
+++ b/src/libmain/shared.cc
@@ -126,7 +126,9 @@ static void initAndRun(int argc, char * * argv)
             setLogType(*i);
         }
         else if (arg == "--build-output" || arg == "-B")
-            buildVerbosity = lvlError; /* lowest */
+            ; /* !!! obsolete - remove eventually */
+        else if (arg == "--no-build-output" || arg == "-Q")
+            buildVerbosity = lvlVomit;
         else if (arg == "--help") {
             printHelp();
             return;
diff --git a/src/libstore/globals.cc b/src/libstore/globals.cc
index aad26501b73520afe937997f97d81983ec82a578..44794d147a7710af8666b6a8d2e3b4a6216ef1ef 100644
--- a/src/libstore/globals.cc
+++ b/src/libstore/globals.cc
@@ -12,6 +12,6 @@ bool keepGoing = false;
 
 bool tryFallback = false;
 
-Verbosity buildVerbosity = lvlDebug;
+Verbosity buildVerbosity = lvlInfo;
 
 unsigned int maxBuildJobs = 1;
diff --git a/src/libutil/util.cc b/src/libutil/util.cc
index 2a2dffb25d6f6f381bda518078b2679c78e2c699..a25665e4a88c7eccad11a432a48b6bf286a24c32 100644
--- a/src/libutil/util.cc
+++ b/src/libutil/util.cc
@@ -243,7 +243,7 @@ void writeStringToFile(const Path & path, const string & s)
 
 
 LogType logType = ltPretty;
-Verbosity verbosity = lvlError;
+Verbosity verbosity = lvlInfo;
 
 static int nestingLevel = 0;
 
diff --git a/src/nix-env/main.cc b/src/nix-env/main.cc
index 8e5ba67e9bb2527934e1783421d0c46793e5470a..3700f44899b9124414588cbc9028a7332f155fb7 100644
--- a/src/nix-env/main.cc
+++ b/src/nix-env/main.cc
@@ -704,9 +704,6 @@ static void opDefaultExpr(Globals & globals,
 
 void run(Strings args)
 {
-    /* Use a higher default verbosity (lvlInfo). */
-    verbosity = (Verbosity) ((int) verbosity + 1);
-
     Strings opFlags, opArgs;
     Operation op = 0;