diff options
author | Lukas Larsson <[email protected]> | 2018-08-15 09:39:01 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2018-08-15 09:39:01 +0200 |
commit | 61231a9266d784f7f014dc79e476253b8586632b (patch) | |
tree | 933be12c8f2cbb72e93b0539868de447d200892c /lib/kernel/doc | |
parent | e5905ee30b7ea62e5b2c4d876a7e1125c0c6ca75 (diff) | |
parent | a0820c62f32ce7ba49a0b90c1af314df99d0eb80 (diff) | |
download | otp-61231a9266d784f7f014dc79e476253b8586632b.tar.gz otp-61231a9266d784f7f014dc79e476253b8586632b.tar.bz2 otp-61231a9266d784f7f014dc79e476253b8586632b.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/kernel/doc')
-rw-r--r-- | lib/kernel/doc/src/logger.xml | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/lib/kernel/doc/src/logger.xml b/lib/kernel/doc/src/logger.xml index f1830a8224..a4d6efa2d8 100644 --- a/lib/kernel/doc/src/logger.xml +++ b/lib/kernel/doc/src/logger.xml @@ -696,6 +696,17 @@ start(_, []) -> </func> <func> + <name name="set_application_level" arity="2"/> + <fsummary>Set the log level for all modules in the specified application.</fsummary> + <desc> + <p>Set the log level for all the modules of the specified application.</p> + <p>This function is a convenience function that calls + <seealso marker="#set_module_level/2">logger:set_module_level/2</seealso> + for each module associated with an application.</p> + </desc> + </func> + + <func> <name name="set_handler_config" arity="2"/> <fsummary>Set configuration data for the specified handler.</fsummary> <desc> @@ -782,8 +793,7 @@ start(_, []) -> <name name="set_module_level" arity="2"/> <fsummary>Set the log level for the specified modules.</fsummary> <desc> - <p>Set the log level for the - specified modules.</p> + <p>Set the log level for the specified modules.</p> <p>The log level for a module overrides the primary log level of Logger for log events originating from the module in question. Notice, however, that it does not override the @@ -839,6 +849,17 @@ start(_, []) -> </func> <func> + <name name="unset_application_level" arity="1"/> + <fsummary>Unset the log level for all modules in the specified application.</fsummary> + <desc> + <p>Unset the log level for all the modules of the specified application.</p> + <p>This function is a convinience function that calls + <seealso marker="#unset_module_level/1">logger:unset_module_level/2</seealso> + for each module associated with an application.</p> + </desc> + </func> + + <func> <name name="unset_module_level" arity="0"/> <fsummary>Remove module specific log settings for all modules.</fsummary> <desc> |