20 lines
460 B
Erlang
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).
|