Skip to content

Commit

Permalink
Changing auto collect logs to disabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mbruin-NR committed Nov 25, 2024
1 parent e31d8d4 commit a617ddb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Agent/FeatureFlags/NRMAFlags.m
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ + (NRMAFeatureFlags) featureFlags
NRFeatureFlag_NetworkRequestEvents |
NRFeatureFlag_RequestErrorEvents |
NRFeatureFlag_DistributedTracing |
NRFeatureFlag_AppStartMetrics |
NRFeatureFlag_AutoCollectLogs;
NRFeatureFlag_AppStartMetrics;
});
return __flags;
}
Expand Down
2 changes: 1 addition & 1 deletion Agent/Public/NewRelicFeatureFlags.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,5 @@ typedef NS_OPTIONS(unsigned long long, NRMAFeatureFlags){
NRFeatureFlag_NewEventSystem = 1 << 20, // Disabled by default
NRFeatureFlag_OfflineStorage = 1 << 21, // Disabled by default
NRFeatureFlag_BackgroundReporting = 1 << 22, // Disabled by default
NRFeatureFlag_AutoCollectLogs = 1 << 23,
NRFeatureFlag_AutoCollectLogs = 1 << 23, // Disabled by default
};

0 comments on commit a617ddb

Please sign in to comment.