mirror of
https://github.com/danbulant/nushell
synced 2026-06-10 10:10:46 +00:00
19 lines
244 B
Rust
19 lines
244 B
Rust
use crate::object::Value;
|
|
|
|
#[allow(unused)]
|
|
#[derive(Debug)]
|
|
pub enum LogLevel {
|
|
Trace,
|
|
Debug,
|
|
Info,
|
|
Warn,
|
|
Error,
|
|
Fatal,
|
|
}
|
|
|
|
#[allow(unused)]
|
|
#[derive(Debug)]
|
|
pub struct LogItem {
|
|
level: LogLevel,
|
|
value: Value,
|
|
}
|