LogLevel Enum

Summary

Defines the severity levels used when writing log messages.
Namespace
GitVersion.Logging
Interfaces
  • IComparable
  • ISpanFormattable
  • IFormattable
  • IConvertible
Base Types
  • object
  • ValueType
  • Enum
graph BT Type-->Base0["Enum"] Base0-->Base1["ValueType"] Base1-->Base2["object"] Type-.->Interface0["IComparable"] Type-.->Interface1["ISpanFormattable"] Type-.->Interface2["IFormattable"] Type-.->Interface3["IConvertible"] Type["LogLevel"] class Type type-node

Syntax

public enum LogLevel

Fields

Name Constant Value Summary
Debug 5
Very detailed low-level diagnostic output, typically only useful during development.
static
Error 1
A serious failure occurred that may be recoverable.
static
Fatal 0
The application cannot continue and must terminate.
static
Info 3
General informational output about normal operation.
static
Verbose 4
Detailed diagnostic output useful for troubleshooting.
static
Warn 2
An unexpected but non-fatal situation that deserves attention.
static
GitHub