Skip to content

Commit

Permalink
made changes to display the error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sreedharamzn committed Jul 26, 2023
1 parent 1887025 commit 604bad3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ impl PerformanceData {
continue;
}
match datatype.prepare_data_collector() {
Err(_) => {
error!("Excluding {} from collection", _name);
Err(e) => {
error!("Excluding {} from collection. Error msg: {}", _name, e.to_string());
remove_entries.push(_name.clone());
}
_ => continue,
Expand Down

0 comments on commit 604bad3

Please sign in to comment.