diff options
author | Araq <rumpf_a@web.de> | 2013-04-15 11:26:46 -0700 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-04-15 11:26:46 -0700 |
commit | ca2ac6e8f92e4a478789a423e871be23591cb126 (patch) | |
tree | 74119573c208ccf6f2719cc78b6e6268c3b9b3f0 | |
parent | c76fb1b17796bc4533ecc6faabf1d2b92c8a4aac (diff) | |
parent | cbbcefeb0b219f9f14352551b0f7002e0001d06e (diff) | |
download | Nim-ca2ac6e8f92e4a478789a423e871be23591cb126.tar.gz |
Merge pull request #389 from gradha/pr_corrects_default_verbosity_level
Corrects default verbosity level from 0 to 1.
-rw-r--r-- | doc/advopt.txt | 2 | ||||
-rw-r--r-- | doc/nimrodc.txt | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/doc/advopt.txt b/doc/advopt.txt index bfeee0c64..38461244d 100644 --- a/doc/advopt.txt +++ b/doc/advopt.txt @@ -78,5 +78,5 @@ Advanced options: --listCmd list the commands used to execute external programs --parallelBuild=0|1|... perform a parallel build value = number of processors (0 for auto-detect) - --verbosity:0|1|2|3 set Nimrod's verbosity level (0 is default) + --verbosity:0|1|2|3 set Nimrod's verbosity level (1 is default) -v, --version show detailed version information diff --git a/doc/nimrodc.txt b/doc/nimrodc.txt index 9e0eba18a..179de3b04 100644 --- a/doc/nimrodc.txt +++ b/doc/nimrodc.txt @@ -75,9 +75,10 @@ Verbosity levels ===== ============================================ Level Description ===== ============================================ -0 Default verbosity level for the compiler. +0 Minimal output level for the compiler. 1 Displays compilation of all the compiled files, including those imported by other modules or through the `compile pragma<#compile-pragma>`_. + This is the default level. 2 Displays compilation statistics, enumerates the dynamic libraries that will be loaded by the final binary and dumps to standard output the result of applying `a filter to the source code |