diff options
author | Peter Andersson <[email protected]> | 2016-09-15 08:00:59 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2016-09-15 08:00:59 +0200 |
commit | 20baf4c3d2a9e3d814ddc46f45d81b3fe20805b8 (patch) | |
tree | bbaede08520e665497bef7fb4ebe0e359b537910 /lib/common_test/doc/src/ct.xml | |
parent | 7cd91bbe819ff25308a7887474451f0db381db5e (diff) | |
parent | 075e0a3ab1a0282fc0f9a1a9a8cd7ce96ab9fba3 (diff) | |
download | otp-20baf4c3d2a9e3d814ddc46f45d81b3fe20805b8.tar.gz otp-20baf4c3d2a9e3d814ddc46f45d81b3fe20805b8.tar.bz2 otp-20baf4c3d2a9e3d814ddc46f45d81b3fe20805b8.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/common_test/doc/src/ct.xml')
-rw-r--r-- | lib/common_test/doc/src/ct.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/common_test/doc/src/ct.xml b/lib/common_test/doc/src/ct.xml index ffc64cba67..53ef41dd5b 100644 --- a/lib/common_test/doc/src/ct.xml +++ b/lib/common_test/doc/src/ct.xml @@ -620,6 +620,21 @@ </func> <func> + <name>get_verbosity(Category) -> Level | undefined</name> + <fsummary>Read the verbosity level for a logging category.</fsummary> + <type> + <v>Category = default | atom()</v> + <v>Level = integer()</v> + </type> + <desc><marker id="get_verbosity-1"/> + <p>This function returns the verbosity level for the specified logging + category. See the <seealso marker="write_test_chapter#logging"> + User's Guide</seealso> for details. Use the value <c>default</c> to read + the general verbosity level.</p> + </desc> + </func> + + <func> <name>install(Opts) -> ok | {error, Reason}</name> <fsummary>Installs configuration files and event handlers.</fsummary> <type> @@ -1225,6 +1240,21 @@ </func> <func> + <name>set_verbosity(Category, Level) -> ok</name> + <fsummary>Set the verbosity level for a logging category.</fsummary> + <type> + <v>Category = default | atom()</v> + <v>Level = integer()</v> + </type> + <desc><marker id="set_verbosity-2"/> + <p>Use this function to set, or modify, the verbosity level for a logging + category. See the <seealso marker="write_test_chapter#logging"> + User's Guide</seealso> for details. Use the value <c>default</c> to set the + general verbosity level.</p> + </desc> + </func> + + <func> <name>sleep(Time) -> ok</name> <fsummary>This function, similar to timer:sleep/1, suspends the test case for a specified time.</fsummary> |