IErrorsAndWarnings
Interface for a container that handles errors, warnings, and informational messages related to a graph or its elements.
Read time 1 minuteLast updated 10 days ago
Definition
- Type: Interface
- Namespace: Unity.GraphToolkit.Editor
- Assembly: UnityEditor
public interface IErrorsAndWarnings
Remarks
Implement this interface to provide logging capabilities for graph-related components. Logged messages can optionally be associated with a specific object in the graph, which enables displaying visual markers in the UI. All messages are also forwarded to the Unity Console.
Methods
Method | Description |
|---|---|
| Log | Logs an informational message. |
| LogError | Logs an error message. |
| LogWarning | Logs a warning message. |