Enum MessageType
Stipulates general logging message types like: Info/Warning/Error etc...
Namespace: NFX.Log
Assembly: NFX.dll
Syntax
public enum MessageType
Fields
| Name | Description |
|---|---|
| Aggregate | The message instance represents many others - probably aggregated with time multiple records into one |
| CatastrophicError | Unrecoverable error, system will experience major operation disruption. SYSLOG.Emergency - A "panic" condition usually affecting multiple apps/servers/sites. At this level it would usually notify all tech staff on call. |
| Critical | SYSLOG.Critical Should be corrected immediately, but indicates failure in a primary system, an example is a loss of a backup ISP connection. |
| CriticalAlert | SYSLOG.Alert Should be corrected immediately, therefore notify staff who can fix the problem. An example would be the loss of a primary ISP connection. |
| Debug | Used in debugging temp code |
| DebugA | |
| DebugB | |
| DebugC | |
| DebugD | |
| DebugGlue | Emitted by Glue/Net code |
| DebugSQL | Emitted by DataStore implementations |
| DebugZ | Last debug-related message type for use in debug-related max-level config setting |
| Emergency | Unrecoverable error, system will most-likely experience major operation disruption. SYSLOG.Emergency - A "panic" condition usually affecting multiple apps/servers/sites. At this level it would usually notify all tech staff on call. |
| Error | Recoverable error, system will most-likely continue working normally. SYSLOG.Error Non-urgent failures, these should be relayed to developers or admins; each item must be resolved within a given time. |
| Info | Informational message, no danger to system operation |
| InfoA | |
| InfoB | |
| InfoC | |
| InfoD | |
| InfoZ | Last info-related message type for use in info-related max-level config setting |
| Notice | SYSLOG.Notice Events that are unusual but not error conditions - might be summarized in an email to developers or admins to spot potential problems - no immediate action required. |
| PerformanceInstrumentation | Performance/Instrumentation-related message |
| SecurityAudit | Permission audit, usualy a result of client user action, no danger to system operation |
| Trace | Tracing, no danger to system operation |
| TraceA | |
| TraceB | |
| TraceC | |
| TraceD | |
| TraceErl | Emitted by Erlang code |
| TraceGlue | Emitted by Glue/Net code |
| TraceSQL | Emitted by DataStore implementations |
| TraceZ | Last trace-related message type for use in trace-related max-level config setting |
| Warning | Caution - inspect and take action. SYSLOG.Warning, not an error, but indication that an error will occur if action is not taken, e.g. file system 85% full - each item must be resolved within a given time. |