You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

llama.native.llamaloglevel.md 1.1 kB

123456789101112131415161718192021
  1. # LLamaLogLevel
  2. Namespace: LLama.Native
  3. Severity level of a log message
  4. ```csharp
  5. public enum LLamaLogLevel
  6. ```
  7. Inheritance [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object) → [ValueType](https://docs.microsoft.com/en-us/dotnet/api/system.valuetype) → [Enum](https://docs.microsoft.com/en-us/dotnet/api/system.enum) → [LLamaLogLevel](./llama.native.llamaloglevel.md)<br>
  8. Implements [IComparable](https://docs.microsoft.com/en-us/dotnet/api/system.icomparable), [IFormattable](https://docs.microsoft.com/en-us/dotnet/api/system.iformattable), [IConvertible](https://docs.microsoft.com/en-us/dotnet/api/system.iconvertible)
  9. ## Fields
  10. | Name | Value | Description |
  11. | --- | --: | --- |
  12. | Error | 2 | Logs that highlight when the current flow of execution is stopped due to a failure. |
  13. | Warning | 3 | Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the application execution to stop. |
  14. | Info | 4 | Logs that track the general flow of the application. |
  15. | Debug | 5 | Logs that are used for interactive investigation during development. |