Enum LoggerType
The ILogConsumer distinguishes between four categories of logs:
| Value | Description |
|---|
| Runtime | Logs that are written by the Orleans run-time itself.
This category should not be used by application code. |
| Grain | Logs that are written by application grains.
This category should be used by code that runs as Orleans grains in a silo. |
| Application | Logs that are written by the client application.
This category should be used by client-side application code. |
| Provider | Logs that are written by providers.
This category should be used by provider code. |
Assembly: Orleans.Core.Legacy.dll
Syntax
public enum LoggerType : int
Fields
| Name |
Description |
| Application |
|
| Grain |
|
| Provider |
|
| Runtime |
|
Extension Methods