File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11use std:: io:: Write ;
22use std:: process:: { Child , Stdio } ;
33
4- use log:: error ;
4+ use log:: debug ;
55
66use crate :: command:: create_command;
77use crate :: event:: Event ;
@@ -32,7 +32,7 @@ impl Monitor {
3232 }
3333 Err ( error) => {
3434 // FIXME: tighten up this error message
35- error ! ( "There was a problem serializing the JSON data: {:?}" , error) ;
35+ debug ! ( "There was a problem serializing the JSON data: {:?}" , error) ;
3636 }
3737 } ;
3838 }
@@ -52,7 +52,7 @@ fn spawn_process(command: &str) -> Option<Child> {
5252
5353 match child. spawn ( ) {
5454 Err ( err) => {
55- error ! ( "Unable to run plugin command: '{}'\n {}" , command, err) ;
55+ debug ! ( "Unable to run plugin command: '{}'\n {}" , command, err) ;
5656 None
5757 }
5858 Ok ( c) => Some ( c) ,
You can’t perform that action at this time.
0 commit comments