diff options
| author | Dan Engelbrecht <[email protected]> | 2025-06-10 13:08:59 +0200 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2025-06-10 13:08:59 +0200 |
| commit | f696e52d150ae284e26de5bdd78d1b1edf914314 (patch) | |
| tree | 392920b1a1334d61900b871b851228cd7963a46c /src/zencore/include | |
| parent | add sentry configurations options for debug/environment (diff) | |
| download | zen-f696e52d150ae284e26de5bdd78d1b1edf914314.tar.xz zen-f696e52d150ae284e26de5bdd78d1b1edf914314.zip | |
revert 61b4a88f and cadaad63
Diffstat (limited to 'src/zencore/include')
| -rw-r--r-- | src/zencore/include/zencore/sentryintegration.h | 16 |
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(); |