Skip to content

Commit

Permalink
fix(core): Use semver in sentry
Browse files Browse the repository at this point in the history
  • Loading branch information
amaury1093 committed Dec 6, 2024
1 parent 297ce4f commit 03e6c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/util/sentry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ fn error(err: SentryError, result: &CheckEmailOutput, backend_name: &str) {
},
level: Level::Error,
environment: Some("production".into()),
release: Some(CARGO_PKG_VERSION.into()),
release: Some(format!("v{}", CARGO_PKG_VERSION).into()),
message: Some(format!("{result:#?}")),
server_name: Some(backend_name.to_string().into()),
transaction: Some(format!("check_email:{}", result.syntax.domain)),
Expand Down

0 comments on commit 03e6c97

Please sign in to comment.