backendless 6.3.5 → 6.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/backendless.js +5 -1
- package/dist/backendless.js.map +1 -1
- package/dist/backendless.min.js +2 -2
- package/es/logging/index.js +4 -0
- package/lib/logging/index.js +4 -0
- package/package.json +1 -1
- package/src/logging/index.js +4 -0
package/dist/backendless.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* ********************************************************************************************************************
|
|
3
|
-
* Backendless SDK for JavaScript. Version: 6.3.
|
|
3
|
+
* Backendless SDK for JavaScript. Version: 6.3.6
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2012-2021 BACKENDLESS.COM. All Rights Reserved.
|
|
6
6
|
*
|
|
@@ -18616,6 +18616,10 @@ var Logging = /*#__PURE__*/function () {
|
|
|
18616
18616
|
}, {
|
|
18617
18617
|
key: "push",
|
|
18618
18618
|
value: function push(logger, logLevel, message, exception) {
|
|
18619
|
+
if (typeof message !== 'string') {
|
|
18620
|
+
throw new Error('"message" must be a string');
|
|
18621
|
+
}
|
|
18622
|
+
|
|
18619
18623
|
this.pool.push({
|
|
18620
18624
|
logger: logger,
|
|
18621
18625
|
message: message,
|