%%%------------------------------------------------------------------- %%% @author anlicheng %%% @copyright (C) 2025, %%% @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).