namespace LibGit2Sharp { /// /// Available logging levels. When logging is enabled at a particular /// level, callers will be provided logging at the given level and all /// lower levels. /// public enum LogLevel { /// /// No logging will be provided. /// None = 0, /// /// Severe errors that may impact the program's execution. /// Fatal = 1, /// /// Errors that do not impact the program's execution. /// Error = 2, /// /// Warnings that suggest abnormal data. /// Warning = 3, /// /// Informational messages about program execution. /// Info = 4, /// /// Detailed data that allows for debugging. /// Debug = 5, /// /// Tracing is exceptionally detailed debugging data. /// Trace = 6, } }