Skip to main content

llama_cpp_log_decoder/
log_line.rs

1use crate::log_level::LogLevel;
2
3#[derive(Clone, Debug, Eq, PartialEq)]
4pub struct LogLine {
5    pub level: LogLevel,
6    pub text: String,
7}