diff options
author | Erlang/OTP <[email protected]> | 2013-11-21 15:39:08 +0100 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2013-11-21 15:39:08 +0100 |
commit | 28eb7e0a25aed6153433ab3e93f023b194d0d858 (patch) | |
tree | 347d363f2267cb4ff43e43efaf1be85affd067f4 /lib/snmp/src/misc/snmp_verbosity.erl | |
parent | 98412eababc3f81719e9c150c9cff6c629e2a3ff (diff) | |
parent | f032cab84cfa89e986b080fb9ded8651ced655dd (diff) | |
download | otp-28eb7e0a25aed6153433ab3e93f023b194d0d858.tar.gz otp-28eb7e0a25aed6153433ab3e93f023b194d0d858.tar.bz2 otp-28eb7e0a25aed6153433ab3e93f023b194d0d858.zip |
Merge branch 'bmk/snmp/snmp4223_integration' into maint-r15
* bmk/snmp/snmp4223_integration:
[snmp] Adjust verbosity for some of the log test cases
[snmp] Loosing log entries when converting a large Audit Trail Log
[snmp] Improving ATL handling of corrupt logs
Diffstat (limited to 'lib/snmp/src/misc/snmp_verbosity.erl')
-rw-r--r-- | lib/snmp/src/misc/snmp_verbosity.erl | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/lib/snmp/src/misc/snmp_verbosity.erl b/lib/snmp/src/misc/snmp_verbosity.erl index df5986b7bc..7d063fd702 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,11 +148,23 @@ 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"; image_of_sname(undefined) -> ""; -image_of_sname(V) -> lists:flatten(io_lib:format("~p",[V])). +image_of_sname(S) when is_list(S) -> + %% The assumption is that its a printable string, + %% but just in case it is some other list... + try lists:flatten(io_lib:format("~s", [S])) of + L -> + L + catch + _:_ -> + lists:flatten(io_lib:format("~p", [S])) + end; +image_of_sname(V) -> lists:flatten(io_lib:format("~p", [V])). validate(info) -> info; |