fn main() {
let client =
sentry::Client::from_config("https://a94ae32be2584e0bbd7a4cbb95971fee@sentry.io/1041156");
let _sentry = sentry::init(client);
sentry::configure_scope(|scope| {
scope.set_fingerprint(Some(["a-message"].as_ref()));
scope.set_tag("foo", "bar");
});
let id = sentry::capture_message("This is recorded as a warning now", sentry::Level::Warning);
println!("sent event {}", id);
}