info_msg(Format) -> ok
info_msg(Format, Data) -> ok
類型:
Format = string()
Data = list()
記錄標準信息事件。這Format
和Data
參數與參數相同io:format/2
在 STDLIB 中。
錯誤記錄器將事件轉發到記錄器,包括允許與舊錯誤記錄器事件處理程序向後兼容的元數據。
該事件由默認的 Logger 處理程序處理。
保留這些函數是為了向後兼容,並且不得由新代碼使用。使用
?LOG_INFO
宏觀或logger:info/1,2,3
反而。
例子:
1> error_logger:info_msg("Something happened in ~p", [a_module]).
=INFO REPORT==== 22-May-2018::12:03:32.612462 ===
Something happened in a_module
ok
警告
如果在格式字符串中使用 Unicode 轉換修飾符 ( t
),則所有事件處理程序必須確保針對 I/O 設備對格式化輸出進行正確編碼。
相關用法
- erlang info_lib()用法及代碼示例
- erlang info_report(Report)用法及代碼示例
- erlang info()用法及代碼示例
- erlang info(QH)用法及代碼示例
- erlang inflateChunk(Z, Data)用法及代碼示例
- erlang inflateSetDictionary(Z, Dictionary)用法及代碼示例
- erlang init(UserData :: user_data(), AccessMode :: write | read, Fun :: file_op())用法及代碼示例
- erlang insert_element(Index, Tuple1, Term)用法及代碼示例
- erlang integer_to_binary(Integer)用法及代碼示例
- erlang integer_to_binary(Integer, Base)用法及代碼示例
- erlang integer_to_list(Integer)用法及代碼示例
- erlang integer_to_list(Integer, Base)用法及代碼示例
- erlang in(Item, Q1 :: queue(Item))用法及代碼示例
- erlang in_r(Item, Q1 :: queue(Item))用法及代碼示例
- erlang init(Q1 :: queue(Item))用法及代碼示例
- erlang init_ack(Ret)用法及代碼示例
- erlang intersect(Map1, Map2)用法及代碼示例
- erlang intersect_with(Combiner, Map1, Map2)用法及代碼示例
- erlang inspect(MP, Item)用法及代碼示例
- erlang intersection_of_family(Family)用法及代碼示例
- erlang inverse(Function1)用法及代碼示例
- erlang inverse_image(BinRel, Set1)用法及代碼示例
- erlang is_file用法及代碼示例
- erlang is_dir用法及代碼示例
- erlang is_atom用法及代碼示例
注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 info_msg(Format) -> ok。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。