diff options
author | Tony Garnock-Jones <tonyg@lshift.net> | 2008-07-03 13:35:11 +0100 |
---|---|---|
committer | Tony Garnock-Jones <tonyg@lshift.net> | 2008-07-03 13:35:11 +0100 |
commit | 675869a27714307bce377638dfe8f6a5f069e757 (patch) | |
tree | e4f9872242be02145702775f5c563f2b246f57ce /src/rabbit_log.erl | |
download | rabbitmq-server-675869a27714307bce377638dfe8f6a5f069e757.tar.gz |
Initial commit, from repo-rebase-20080703121916_default (e96543d904a2)
Diffstat (limited to 'src/rabbit_log.erl')
-rw-r--r-- | src/rabbit_log.erl | 132 |
1 files changed, 132 insertions, 0 deletions
diff --git a/src/rabbit_log.erl b/src/rabbit_log.erl new file mode 100644 index 00000000..a8f839f0 --- /dev/null +++ b/src/rabbit_log.erl @@ -0,0 +1,132 @@ +%% The contents of this file are subject to the Mozilla Public License +%% Version 1.1 (the "License"); you may not use this file except in +%% compliance with the License. You may obtain a copy of the License at +%% http://www.mozilla.org/MPL/ +%% +%% Software distributed under the License is distributed on an "AS IS" +%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the +%% License for the specific language governing rights and limitations +%% under the License. +%% +%% The Original Code is RabbitMQ. +%% +%% The Initial Developers of the Original Code are LShift Ltd., +%% Cohesive Financial Technologies LLC., and Rabbit Technologies Ltd. +%% +%% Portions created by LShift Ltd., Cohesive Financial Technologies +%% LLC., and Rabbit Technologies Ltd. are Copyright (C) 2007-2008 +%% LShift Ltd., Cohesive Financial Technologies LLC., and Rabbit +%% Technologies Ltd.; +%% +%% All Rights Reserved. +%% +%% Contributor(s): ______________________________________. +%% + +-module(rabbit_log). + +-behaviour(gen_server). + +-export([start_link/0]). + +-export([init/1, handle_call/3, handle_cast/2, handle_info/2, + terminate/2, code_change/3]). + +-export([debug/1, debug/2, info/1, info/2, + warning/1, warning/2, error/1, error/2]). + +-import(io). +-import(error_logger). + +-define(SERVER, ?MODULE). + +%%---------------------------------------------------------------------------- + +-ifdef(use_specs). + +-spec(start_link/0 :: () -> {'ok', pid()} | 'ignore' | {'error', any()}). +-spec(debug/1 :: (string()) -> 'ok'). +-spec(debug/2 :: (string(), [any()]) -> 'ok'). +-spec(info/1 :: (string()) -> 'ok'). +-spec(info/2 :: (string(), [any()]) -> 'ok'). +-spec(warning/1 :: (string()) -> 'ok'). +-spec(warning/2 :: (string(), [any()]) -> 'ok'). +-spec(error/1 :: (string()) -> 'ok'). +-spec(error/2 :: (string(), [any()]) -> 'ok'). + +-endif. + +%%---------------------------------------------------------------------------- + +start_link() -> + gen_server:start_link({local, ?SERVER}, ?MODULE, [], []). + +debug(Fmt) -> + gen_server:cast(?SERVER, {debug, Fmt}). + +debug(Fmt, Args) when is_list(Args) -> + gen_server:cast(?SERVER, {debug, Fmt, Args}). + +info(Fmt) -> + gen_server:cast(?SERVER, {info, Fmt}). + +info(Fmt, Args) when is_list(Args) -> + gen_server:cast(?SERVER, {info, Fmt, Args}). + +warning(Fmt) -> + gen_server:cast(?SERVER, {warning, Fmt}). + +warning(Fmt, Args) when is_list(Args) -> + gen_server:cast(?SERVER, {warning, Fmt, Args}). + +error(Fmt) -> + gen_server:cast(?SERVER, {error, Fmt}). + +error(Fmt, Args) when is_list(Args) -> + gen_server:cast(?SERVER, {error, Fmt, Args}). + +%%-------------------------------------------------------------------- + +init([]) -> {ok, none}. + +handle_call(_Request, _From, State) -> + {noreply, State}. + +handle_cast({debug, Fmt}, State) -> + io:format("debug:: "), io:format(Fmt), + error_logger:info_msg("debug:: " ++ Fmt), + {noreply, State}; +handle_cast({debug, Fmt, Args}, State) -> + io:format("debug:: "), io:format(Fmt, Args), + error_logger:info_msg("debug:: " ++ Fmt, Args), + {noreply, State}; +handle_cast({info, Fmt}, State) -> + error_logger:info_msg(Fmt), + {noreply, State}; +handle_cast({info, Fmt, Args}, State) -> + error_logger:info_msg(Fmt, Args), + {noreply, State}; +handle_cast({warning, Fmt}, State) -> + error_logger:warning_msg(Fmt), + {noreply, State}; +handle_cast({warning, Fmt, Args}, State) -> + error_logger:warning_msg(Fmt, Args), + {noreply, State}; +handle_cast({error, Fmt}, State) -> + error_logger:error_msg(Fmt), + {noreply, State}; +handle_cast({error, Fmt, Args}, State) -> + error_logger:error_msg(Fmt, Args), + {noreply, State}; +handle_cast(_Msg, State) -> + {noreply, State}. + +handle_info(_Info, State) -> + {noreply, State}. + +terminate(_Reason, _State) -> + ok. + +code_change(_OldVsn, State, _Extra) -> + {ok, State}. + |