mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-21 23:04:49 +01:00
fix: removed some log prints
This commit is contained in:
parent
38bf411d54
commit
c3d7889e23
1 changed files with 0 additions and 2 deletions
|
@ -71,10 +71,8 @@ impl Handler for NeovimHandler {
|
|||
let txt = default_empty_str(&args, 1);
|
||||
let pos = default_zero_number(&args, 2) as u64;
|
||||
let mut c = self.client.clone();
|
||||
info!("correctly parsed arguments: {} - {} - {}", path, txt, pos);
|
||||
match c.insert(path, txt, pos).await {
|
||||
Ok(res) => {
|
||||
info!("RPC 'insert' completed");
|
||||
match res {
|
||||
true => Ok(Value::Nil),
|
||||
false => Err(Value::from("rejected")),
|
||||
|
|
Loading…
Reference in a new issue