mirror of
https://github.com/nushell/nushell
synced 2025-01-24 02:45:31 +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,
|
|
}
|