File tree Expand file tree Collapse file tree 3 files changed +27
-18
lines changed Expand file tree Collapse file tree 3 files changed +27
-18
lines changed Original file line number Diff line number Diff line change @@ -76,12 +76,15 @@ impl Timer {
7676 Ok ( _) => {
7777 log:: trace!( target: LOG_TAG , "Sent event to listener @ {:?}" , & tx)
7878 }
79- Err ( e) => log:: warn!(
80- target: LOG_TAG ,
81- "Failed to send event to listener @ {:?} - {}" ,
82- & tx,
83- e
84- ) ,
79+ Err ( _e) => { }
80+ // There could be a less confusing message, or this
81+ // refactored to avoid a first sender
82+ //log::warn!(
83+ //target: LOG_TAG,
84+ //"Failed to send event to listener @ {:?} - {}",
85+ //&tx,
86+ //e
87+ //),
8588 }
8689 } ) ;
8790 }
Original file line number Diff line number Diff line change @@ -74,12 +74,15 @@ impl Timer {
7474 Ok ( _) => {
7575 log:: trace!( target: LOG_TAG , "Sent event to listener @ {:?}" , & tx)
7676 }
77- Err ( e) => log:: warn!(
78- target: LOG_TAG ,
79- "Failed to send event to listener @ {:?} - {}" ,
80- & tx,
81- e
82- ) ,
77+ Err ( _e) => { }
78+ // There could be a less confusing message, or this
79+ // refactored to avoid a first sender
80+ //log::warn!(
81+ //target: LOG_TAG,
82+ //"Failed to send event to listener @ {:?} - {}",
83+ //&tx,
84+ //e
85+ //),
8386 }
8487 } ) ;
8588
Original file line number Diff line number Diff line change @@ -72,12 +72,15 @@ impl Timer {
7272 Ok ( _) => {
7373 log:: trace!( target: LOG_TAG , "Sent event to listener @ {:?}" , & tx)
7474 }
75- Err ( e) => log:: warn!(
76- target: LOG_TAG ,
77- "Failed to send event to listener @ {:?} - {}" ,
78- & tx,
79- e
80- ) ,
75+ Err ( _e) => { }
76+ // There could be a less confusing message, or this
77+ // refactored to avoid a first sender
78+ //log::warn!(
79+ //target: LOG_TAG,
80+ //"Failed to send event to listener @ {:?} - {}",
81+ //&tx,
82+ //e
83+ //),
8184 }
8285 } ) ;
8386
You can’t perform that action at this time.
0 commit comments