LoggerType Enum

Definition

The ILogConsumer distinguishes between four categories of logs:

ValueDescription
RuntimeLogs that are written by the Orleans run-time itself. This category should not be used by application code.
GrainLogs that are written by application grains. This category should be used by code that runs as Orleans grains in a silo.
ApplicationLogs that are written by the client application. This category should be used by client-side application code.
ProviderLogs that are written by providers. This category should be used by provider code.
public enum LoggerType
type LoggerType = 
Public Enum LoggerType
Inheritance
LoggerType

Fields

Application 2
Grain 1
Provider 3
Runtime 0

Applies to