ekfa/apps/efka/src/efka_logger.erl
2025-04-29 23:13:51 +08:00

20 lines
460 B
Erlang

%%%-------------------------------------------------------------------
%%% @author anlicheng
%%% @copyright (C) 2025, <COMPANY>
%%% @doc
%%%
%%% @end
%%% Created : 29. 4月 2025 22:39
%%%-------------------------------------------------------------------
-module(efka_logger).
-author("anlicheng").
%% API
-export([debug/2, notice/2]).
debug(Format, Args) ->
io:format(Format ++ "~n", Args).
notice(Format, Args) ->
io:format(Format ++ "~n", Args).