Skip to content

Commit

Permalink
Merge pull request #440 from daleglass/disable-crash-logger-by-default
Browse files Browse the repository at this point in the history
Disable crash logger by default
  • Loading branch information
two-one-five authored Jun 11, 2020
2 parents 2ae3048 + b681f99 commit e19267e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion interface/src/Menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ Menu::Menu() {
addCheckableActionToQMenuAndActionHash(networkMenu,
MenuOption::DisableCrashLogger,
0,
false,
true,
&UserActivityLogger::getInstance(),
SLOT(crashMonitorDisable(bool)));
addActionToQMenuAndActionHash(networkMenu, MenuOption::ShowDSConnectTable, 0,
Expand Down
2 changes: 1 addition & 1 deletion interface/src/Menu.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ namespace MenuOption {
const QString DeleteAvatarEntitiesBookmark = "Delete Avatar Entities Bookmark";
const QString DeleteBookmark = "Delete Bookmark...";
const QString DisableActivityLogger = "Disable Activity Logger";
const QString DisableCrashLogger = "Disable Crash Logger";
const QString DisableCrashLogger = "Disable Crash Reporter";
const QString DisableEyelidAdjustment = "Disable Eyelid Adjustment";
const QString DisableLightEntities = "Disable Light Entities";
const QString DisplayCrashOptions = "Display Crash Options";
Expand Down
2 changes: 1 addition & 1 deletion libraries/networking/src/UserActivityLogger.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private slots:
private:
UserActivityLogger();
Setting::Handle<bool> _disabled { "UserActivityLoggerDisabled", true };
Setting::Handle<bool> _crashMonitorDisabled { "CrashMonitorDisabled", false };
Setting::Handle<bool> _crashMonitorDisabled { "CrashMonitorDisabled2", true };

QElapsedTimer _timer;
};
Expand Down

0 comments on commit e19267e

Please sign in to comment.