Sentry: remove url length print

This commit is contained in:
Lion Kortlepel 2021-09-08 17:29:37 +03:00 committed by Lion
parent 8250d5876f
commit cacdc004da

View File

@ -4,8 +4,6 @@
#include <sentry.h>
#include <sstream>
static size_t SentryUrlLen;
// compile-time length of a string/array
template <size_t N>
constexpr size_t ConstexprLength(char const (&)[N]) {
@ -37,7 +35,6 @@ TSentry::~TSentry() {
void TSentry::PrintWelcome() {
if (mValid) {
info("Sentry started");
debug("Sentry URL is length " + std::to_string(SentryUrlLen));
} else {
info("Sentry disabled in unofficial build");
}