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