diff options
author | Anders Svensson <[email protected]> | 2011-09-23 17:25:08 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2011-09-26 17:23:58 +0200 |
commit | 2ba082f42a77d901b5306d15f05e1717ad137e00 (patch) | |
tree | dd8d20af23dc24571cd6ce880fee51d67de1016c /lib/diameter/src/app/diameter_stats.erl | |
parent | 48a715dec34a61208e82f91b49a3d3670a62d7ce (diff) | |
download | otp-2ba082f42a77d901b5306d15f05e1717ad137e00.tar.gz otp-2ba082f42a77d901b5306d15f05e1717ad137e00.tar.bz2 otp-2ba082f42a77d901b5306d15f05e1717ad137e00.zip |
Use single format for error_logger reports
Diffstat (limited to 'lib/diameter/src/app/diameter_stats.erl')
-rw-r--r-- | lib/diameter/src/app/diameter_stats.erl | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/diameter/src/app/diameter_stats.erl b/lib/diameter/src/app/diameter_stats.erl index b52d4cdcfb..71479afa95 100644 --- a/lib/diameter/src/app/diameter_stats.erl +++ b/lib/diameter/src/app/diameter_stats.erl @@ -207,7 +207,7 @@ handle_call({flush, Contrib}, _From, State) -> {reply, fetch(Contrib), State}; handle_call(Req, From, State) -> - warning_msg("received unexpected request from ~p:~n~w", [From, Req]), + ?UNEXPECTED([Req, From]), {reply, nok, State}. %% ---------------------------------------------------------- @@ -219,7 +219,7 @@ handle_cast({incr, Rec}, State) -> {noreply, State}; handle_cast(Msg, State) -> - warning_msg("received unexpected message:~n~w", [Msg]), + ?UNEXPECTED([Msg]), {noreply, State}. %% ---------------------------------------------------------- @@ -231,7 +231,7 @@ handle_info({'DOWN', _MRef, process, Pid, _}, State) -> {noreply, State}; handle_info(Info, State) -> - warning_msg("received unknown info:~n~w", [Info]), + ?UNEXPECTED([Info]), {noreply, State}. %% ---------------------------------------------------------- @@ -340,8 +340,3 @@ cast(Msg) -> call(Request) -> gen_server:call(?SERVER, Request, infinity). - -%% warning_msg/2 - -warning_msg(F, A) -> - ?diameter_warning("~p: " ++ F, [?MODULE | A]). |