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