Enum ELogType
public enum ELogType
Namespace: HomeSeer.PluginSdk.Logging
Assembly: PluginSdk.dll
Used to categorize log entries in increasing level of severity.
Remarks
Users are able to filter the HomeSeer log by type based on what kind of information they are looking for. Properly categorizing your log entries will make it easier for users and HomeSeer support staff to troubleshoot any issues with the expected operation of your plugin.
Fields
Name | Description |
---|---|
Debug | Messages used for debugging the plugin process. |
Error | Critical messages about issues that require user attention and may be interfering with normal operation. The most severe log type. |
Info | Informational messages about the plugin process that require no attention but may be useful for users. |
Trace | Messages typically used for marking where the plugin process is in code. The least severe and most verbose log type. |
Warning | Messages indicating that there may be an issue interfering with the normal operation of the plugin that the user might want to address. |