ggs_logger got lost somewhere? I added it again, also replaced all references to helpers with ggs_logger
This commit is contained in:
parent
ea1557e2d7
commit
94d9dc6d7f
5 changed files with 23 additions and 15 deletions
8
src/ggs_logger.erl
Normal file
8
src/ggs_logger.erl
Normal 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).
|
Reference in a new issue