Log.Info(category, message)
生成在第二个参数性中传递的信息性消息,并将其与第一个参数中传递的类别相关联。
static void Info(stringcategory, stringmessage);
参数
- category(string)
- 消息类别。
- message(string)
- 要生成的消息。
示例
Log.Info("CustomCategory", "This is an info message");
提供反馈