mirror of
https://github.com/nushell/nushell
synced 2024-12-27 13:33:16 +00:00
No longer need to trace call_info
This commit is contained in:
parent
0b8bbd8637
commit
c3034d3247
1 changed files with 0 additions and 4 deletions
|
@ -4,8 +4,6 @@ use nu::{
|
|||
ReturnSuccess, ReturnValue, ShellError, Tagged, Value,
|
||||
};
|
||||
|
||||
use log::trace;
|
||||
|
||||
struct Str {
|
||||
field: Option<String>,
|
||||
error: Option<String>,
|
||||
|
@ -136,8 +134,6 @@ impl Plugin for Str {
|
|||
}
|
||||
|
||||
fn begin_filter(&mut self, call_info: CallInfo) -> Result<Vec<ReturnValue>, ShellError> {
|
||||
trace!("{:?}", call_info);
|
||||
|
||||
if call_info.args.has("downcase") {
|
||||
self.for_downcase();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue