Skip to content

Commit

Permalink
chore(err): skip properties error logs for now (#26117)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverb123 authored Nov 11, 2024
1 parent 36d37c6 commit 79d5e5a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions rust/cymbal/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,8 @@ async fn main() -> Result<(), Error> {

let properties: ErrProps = match serde_json::from_str(properties) {
Ok(r) => r,
Err(err) => {
Err(_) => {
metrics::counter!(ERRORS, "cause" => "invalid_exception_properties").increment(1);
error!(
"Error parsing properties: {:?} from properties {:?}",
err, properties
);
continue;
}
};
Expand Down

0 comments on commit 79d5e5a

Please sign in to comment.