lager.hrl 4.17 KB
Newer Older
Andrew Thompson's avatar
Andrew Thompson committed
1
%% Copyright (c) 2011-2012 Basho Technologies, Inc.  All Rights Reserved.
Andrew Thompson's avatar
Andrew Thompson committed
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%%
%% This file is provided to you under the Apache License,
%% Version 2.0 (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.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing,
%% software distributed under the License is distributed on an
%% "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
%% KIND, either express or implied.  See the License for the
%% specific language governing permissions and limitations
%% under the License.

17

18
-define(DEFAULT_TRUNCATION, 4096).
19
-define(DEFAULT_TRACER, lager_default_tracer).
20
-define(DEFAULT_SINK, lager_event).
21
22
-define(ERROR_LOGGER_SINK, error_logger_lager_event).

23

Andrew Thompson's avatar
Andrew Thompson committed
24
-define(LEVELS,
25
    [debug, info, notice, warning, error, critical, alert, emergency, none]).
Andrew Thompson's avatar
Andrew Thompson committed
26

27
28
29
%% Use of these "functions" means that the argument list will not be
%% truncated for safety
-define(LEVELS_UNSAFE,
30
    [{debug_unsafe, debug}, {info_unsafe, info}, {notice_unsafe, notice}, {warning_unsafe, warning}, {error_unsafe, error}, {critical_unsafe, critical}, {alert_unsafe, alert}, {emergency_unsafe, emergency}]).
31

32
33
34
35
36
37
38
39
40
-define(DEBUG, 128).
-define(INFO, 64).
-define(NOTICE, 32).
-define(WARNING, 16).
-define(ERROR, 8).
-define(CRITICAL, 4).
-define(ALERT, 2).
-define(EMERGENCY, 1).
-define(LOG_NONE, 0).
Andrew Thompson's avatar
Andrew Thompson committed
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65

-define(LEVEL2NUM(Level),
    case Level of
        debug -> ?DEBUG;
        info -> ?INFO;
        notice -> ?NOTICE;
        warning -> ?WARNING;
        error -> ?ERROR;
        critical -> ?CRITICAL;
        alert -> ?ALERT;
        emergency -> ?EMERGENCY
    end).

-define(NUM2LEVEL(Num),
    case Num of
        ?DEBUG -> debug;
        ?INFO -> info;
        ?NOTICE -> notice;
        ?WARNING -> warning;
        ?ERROR -> error;
        ?CRITICAL -> critical;
        ?ALERT -> alert;
        ?EMERGENCY -> emergency
    end).

Daniil Fedotov's avatar
Daniil Fedotov committed
66
67
68
-define(SHOULD_LOG(Sink, Level),
    (lager_util:level_to_num(Level) band element(1, lager_config:get({Sink, loglevel}, {?LOG_NONE, []}))) /= 0).

Andrew Thompson's avatar
Andrew Thompson committed
69
-define(SHOULD_LOG(Level),
70
    (lager_util:level_to_num(Level) band element(1, lager_config:get(loglevel, {?LOG_NONE, []}))) /= 0).
Andrew Thompson's avatar
Andrew Thompson committed
71

72
-define(NOTIFY(Level, Pid, Format, Args),
73
    gen_event:notify(lager_event, {log, lager_msg:new(io_lib:format(Format, Args),
74
75
            Level,
            [{pid,Pid},{line,?LINE},{file,?FILE},{module,?MODULE}],
76
            [])}
77
        )).
Andrew Thompson's avatar
Andrew Thompson committed
78

79
%% FOR INTERNAL USE ONLY
Andrew Thompson's avatar
Andrew Thompson committed
80
%% internal non-blocking logging call
81
82
%% there's some special handing for when we try to log (usually errors) while
%% lager is still starting.
83
84
85
86
87
88
89
90
91
-ifdef(TEST).
-define(INT_LOG(Level, Format, Args),
    case ?SHOULD_LOG(Level) of
        true ->
            ?NOTIFY(Level, self(), Format, Args);
        _ ->
            ok
    end).
-else.
Andrew Thompson's avatar
Andrew Thompson committed
92
-define(INT_LOG(Level, Format, Args),
93
94
95
96
97
    Self = self(),
    %% do this in a spawn so we don't cause a deadlock calling gen_event:which_handlers
    %% from a gen_event handler
    spawn(fun() ->
            case catch(gen_event:which_handlers(lager_event)) of
98
                X when X == []; X == {'EXIT', noproc}; X == [lager_backend_throttle] ->
99
100
101
102
103
104
105
106
107
108
109
110
111
                    %% there's no handlers yet or lager isn't running, try again
                    %% in half a second.
                    timer:sleep(500),
                    ?NOTIFY(Level, Self, Format, Args);
                _ ->
                    case ?SHOULD_LOG(Level) of
                        true ->
                            ?NOTIFY(Level, Self, Format, Args);
                        _ ->
                            ok
                    end
            end
    end)).
112
-endif.
113

114
-record(lager_shaper, {
115
116
117
118
119
120
121
122
123
                  %% how many messages per second we try to deliver
                  hwm = undefined :: 'undefined' | pos_integer(),
                  %% how many messages we've received this second
                  mps = 0 :: non_neg_integer(),
                  %% the current second
                  lasttime = os:timestamp() :: erlang:timestamp(),
                  %% count of dropped messages this second
                  dropped = 0 :: non_neg_integer()
                 }).
124
125

-type lager_shaper() :: #lager_shaper{}.