mirror of
https://github.com/nushell/nushell
synced 2025-01-25 19:35:25 +00:00
b2c5af457e
This improves incremental build time when working on what was previously the root package. For example, previously all plugins would be rebuilt with a change to `src/commands/classified/external.rs`, but now only `nu-cli` will have to be rebuilt (and anything that depends on it).
10 lines
143 B
Rust
10 lines
143 B
Rust
use nu_protocol::Value;
|
|
|
|
#[derive(Debug)]
|
|
pub enum LogLevel {}
|
|
|
|
#[derive(Debug)]
|
|
pub struct LogItem {
|
|
level: LogLevel,
|
|
value: Value,
|
|
}
|