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: CHANGES.txt
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,6 @@
1
+
2.7.0 (October 7, 2025)
2
+
- Added support for custom loggers: added `logger` configuration option and `LoggerAPI.setLogger` method to allow the SDK to use a custom logger.
3
+
1
4
2.6.0 (September 18, 2025)
2
5
- Added `storage.wrapper` configuration option to allow the SDK to use a custom storage wrapper for the storage type `LOCALSTORAGE`. Default value is `window.localStorage`.
expect(isLogLevelString(LOG_LEVELS.DEBUG)).toBe(true);// Calling isLogLevelString should return true with a LOG_LEVELS value
17
17
expect(isLogLevelString('ERROR')).toBe(true);// Calling isLogLevelString should return true with a string equal to some LOG_LEVELS value
18
18
expect(isLogLevelString('INVALID LOG LEVEL')).toBe(false);// Calling isLogLevelString should return false with a string not equal to any LOG_LEVELS value
0 commit comments