aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/include
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2025-06-10 13:08:59 +0200
committerDan Engelbrecht <[email protected]>2025-06-10 13:08:59 +0200
commitf696e52d150ae284e26de5bdd78d1b1edf914314 (patch)
tree392920b1a1334d61900b871b851228cd7963a46c /src/zencore/include
parentadd sentry configurations options for debug/environment (diff)
downloadzen-f696e52d150ae284e26de5bdd78d1b1edf914314.tar.xz
zen-f696e52d150ae284e26de5bdd78d1b1edf914314.zip
revert 61b4a88f and cadaad63
Diffstat (limited to 'src/zencore/include')
-rw-r--r--src/zencore/include/zencore/sentryintegration.h16
1 files changed, 5 insertions, 11 deletions
diff --git a/src/zencore/include/zencore/sentryintegration.h b/src/zencore/include/zencore/sentryintegration.h
index faf1238b7..d14c1c275 100644
--- a/src/zencore/include/zencore/sentryintegration.h
+++ b/src/zencore/include/zencore/sentryintegration.h
@@ -31,17 +31,11 @@ public:
SentryIntegration();
~SentryIntegration();
- struct Config
- {
- std::string DatabasePath;
- std::string AttachmentsPath;
- std::string Dsn;
- std::string Environment;
- bool AllowPII = false;
- bool Debug = false;
- };
-
- void Initialize(const Config& Conf, const std::string& CommandLine);
+ void Initialize(std::string SentryDatabasePath,
+ std::string SentryAttachmentsPath,
+ std::string SentryDsn,
+ bool AllowPII,
+ const std::string& CommandLine);
void LogStartupInformation();
static void ClearCaches();