You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,18 +3,18 @@
3
3
## Version 3.2.6
4
4
-`BacktraceClient` will apply sampling only to errors lacking exception information.
5
5
- Fixed annotations nullable value.
6
-
- Renamed `BacktraceUnhandledException` classifier to `error`.
6
+
- Renamed `BacktraceUnhandledException` classifier, which was generated from a Debug.LogError call, to `error`.
7
7
- Fixed nullable environment annotation value.
8
8
9
9
## Version 3.2.5
10
10
- Added `BacktraceClient` Initialization method that allows developer to intialize Backtrace integration without adding game object to game scene.
11
11
- Fixed invalid `meta` file for iOS integration for Unity 2019.2.13f1.
12
12
- HTTP communication messages improvements - right now Backtrace-Unity plugin will print only one error message when network failure happen. Backtrace-Unity will stop printing failures until next successfull report upload.
13
-
- Sampling skip fraction - Enables a new random sampling mechanism for unhandled exceptions - by default sampling is equal to 0.01 - which means only 1% of randomply sampling reports will be send to Backtrace. If you would like to send all unhandled exceptions to Backtrace - please replace 0.01 value with 1.
13
+
- Sampling skip fraction - Enables a new random sampling mechanism for BacktraceUnhandledExceptions (errors from Debug.LogError - by default sampling is equal to 0.01 - which means only 1% of randomly sampled Debug.LogError reports will be send to Backtrace. If you would like to send all Debug.LogError to Backtrace - please replace 0.01 value with 1.
14
14
15
15
**Be aware**
16
16
17
-
By default Backtrace library will send only 1% of your reports - please change this value if you would like to send more unhandled exceptions to server.
17
+
By default Backtrace library will send only 1% of your Debug.LogError reports - please change this value if you would like to send more Debug.LogErrors to server.
0 commit comments