diff options
author | Micael Karlberg <[email protected]> | 2013-10-11 12:13:52 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2013-10-11 12:13:52 +0200 |
commit | 8402f78061bf0cb3283bd0028b98746ef730fe4a (patch) | |
tree | eb0433132578b9da658a134b10ed3e25078ab522 /lib/snmp/src/misc/snmp_verbosity.erl | |
parent | e0ecc86e35475b434efa6cccba44074ca1040b7a (diff) | |
download | otp-8402f78061bf0cb3283bd0028b98746ef730fe4a.tar.gz otp-8402f78061bf0cb3283bd0028b98746ef730fe4a.tar.bz2 otp-8402f78061bf0cb3283bd0028b98746ef730fe4a.zip |
[snmp] Add (atl) log conversion block option
It is now possible to request that the Audit Trail Log should
be blocked during conversion (log_to_txt or log_to_io). This
could be usefull when coverting a large log (when there is
a chance it may otherwise wrap during conversion).
Diffstat (limited to 'lib/snmp/src/misc/snmp_verbosity.erl')
-rw-r--r-- | lib/snmp/src/misc/snmp_verbosity.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/snmp/src/misc/snmp_verbosity.erl b/lib/snmp/src/misc/snmp_verbosity.erl index df5986b7bc..e5ff3daf91 100644 --- a/lib/snmp/src/misc/snmp_verbosity.erl +++ b/lib/snmp/src/misc/snmp_verbosity.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2000-2012. All Rights Reserved. +%% Copyright Ericsson AB 2000-2013. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -148,6 +148,8 @@ image_of_sname(mnifl) -> "M-NET-IF-LOGGER"; image_of_sname(mnifw) -> io_lib:format("M-NET-IF-worker(~p)", [self()]); image_of_sname(mconf) -> "M-CONF"; +image_of_sname(lc) -> io_lib:format("LOG-CONVERTER(~p)", [self()]); + image_of_sname(mgr) -> "MGR"; image_of_sname(mgr_misc) -> "MGR_MISC"; |