๐Ÿ“ฆ siedentop / sentry_cpp_examples

Sentry.io example for C++ code https://siedentop.dev/posts/sentry-cpp/

โ˜… 0 stars โ‘‚ 0 forks ๐Ÿ‘ 0 watching โš–๏ธ MIT License
๐Ÿ“ฅ Clone https://github.com/siedentop/sentry_cpp_examples.git
HTTPS git clone https://github.com/siedentop/sentry_cpp_examples.git
SSH git clone git@github.com:siedentop/sentry_cpp_examples.git
CLI gh repo clone siedentop/sentry_cpp_examples
siedentop siedentop Create README.md a5d2bde 5 years ago ๐Ÿ“ History
๐Ÿ“‚ main View all commits โ†’
๐Ÿ“„ CMakeLists.txt
๐Ÿ“„ example1.cc
๐Ÿ“„ LICENSE
๐Ÿ“„ README.md
๐Ÿ“„ README.md

Example C++ code using Sentry

Written to a company this post: https://siedentop.dev/posts/sentry-cpp/

#include <crow/crow.hpp>

int main(void) {
  nlohmann::crow sentry(
      "https://7c164e487bc24a0fadb32c461fc71764@sentry.io/1860700");

  sentry.capture_message("Hello, Sentry!");

  printf("Hello, World!\n");
}