LLamaLogLevel
Namespace: LLama.Native
Severity level of a log message. This enum should always be aligned with the one defined on llama.cpp side at https://github.com/ggerganov/llama.cpp/blob/0eb4e12beebabae46d37b78742f4c5d4dbe52dc1/ggml/include/ggml.h#L559
1 |
|
Inheritance Object → ValueType → Enum → LLamaLogLevel
Implements IComparable, ISpanFormattable, IFormattable, IConvertible
Fields
Name | Value | Description |
---|---|---|
None | 0 | Logs are never written. |
Debug | 1 | Logs that are used for interactive investigation during development. |
Info | 2 | Logs that track the general flow of the application. |
Warning | 3 | Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the application execution to stop. |
Error | 4 | Logs that highlight when the current flow of execution is stopped due to a failure. |
Continue | 5 | Continue log level is equivalent to None in the way it is used in llama.cpp. |