- Getting started
- Using the software
- OPC UA
- Graphic and layout objects
- Developing solutions
- Developing projects with C#
- Application examples
- UI tutorial
- NetLogic tutorial
- Object and variable references
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