ggs_logger got lost somewhere? I added it again, also replaced all references to helpers with ggs_logger

This commit is contained in:
Jonatan Pålsson 2011-02-17 08:33:55 +01:00
parent ea1557e2d7
commit 94d9dc6d7f
5 changed files with 23 additions and 15 deletions

8
src/ggs_logger.erl Normal file
View file

@ -0,0 +1,8 @@
-module(ggs_logger).
-export([not_implemented/0, log/2]).
not_implemented() ->
exit(not_implemented).
log(Format, Args) ->
error_logger:info_msg(Format, Args).