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