Browse Source

Use -include instead of -include_lib

As the include file is located in the same application, using
-include instead of -include_lib removes the need for the
code directory to be called "lager" or "lager-VSN".
pull/82/head
Magnus Henoch 12 years ago
parent
commit
0fda333cbf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/lager_default_formatter.erl

+ 1
- 1
src/lager_default_formatter.erl View File

@ -19,7 +19,7 @@
%%
%% Include files
%%
-include_lib("lager/include/lager.hrl").
-include("lager.hrl").
-ifdef(TEST).
-include_lib("eunit/include/eunit.hrl").
-endif.

Loading…
Cancel
Save