- Getting started
- Creating projects
- OPC UA
- Graphic objects
- Predefined graphic objects
- Sessions and locales
- Object and variable references
- Extending projects
- NetLogic
- NetLogic tutorial
Log.Info(category, message)
Generates an informational message passed in the second argument and associates it with the category passed in the first argument.
static void Info(stringcategory, stringmessage);
Arguments
- category(string)
- The message category.
- message(string)
- The message to generate.
Examples
Log.Info("CustomCategory", "This is an info message");
Provide Feedback