Skip to content

Commit

Permalink
Fix issue #31
Browse files Browse the repository at this point in the history
  • Loading branch information
Cy6erBr4in committed Sep 21, 2013
1 parent 1a89ea9 commit 5f2d89b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/alog.hrl
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
-define(DBG(Format, Args), ?DBG(Format, Args, [])).
-define(DBG(Format), ?DBG(Format, [])).

-define(DEBUG(Format, Args, Tag), ?LOG(Format, Args, ?debug, Tag)).
-define(DEBUG(Format, Args), ?DEBUG(Format, Args, [])).
-define(DEBUG(Format), ?DEBUG(Format, [])).

-define(INFO(Format, Args, Tag), ?LOG(Format, Args, ?info, Tag)).
-define(INFO(Format, Args), ?INFO(Format, Args, [])).
-define(INFO(Format), ?INFO(Format, [])).
Expand Down

0 comments on commit 5f2d89b

Please sign in to comment.