Enum NetDebug.LogLevelType
The available NetCode logging levels. Notify is the default. Use the NetCodeDebugConfig component to configure the logging level.
Namespace: Unity.NetCode
Assembly: Unity.NetCode.dll
Syntax
public enum NetDebug.LogLevelType
Fields
| Name | Description |
|---|---|
| Debug | Debug level. This is the most verbose and only debug messages should use this. |
| Error | Level to use for all error messages (critical or not). |
| Exception | When set, only exception will be output. |
| Notify | Default debug level. Non-spamming messages that contains useful information and that don't have measurable performance impact can use this. |
| Warning | Level to use for non-critical errors or potential issues. |