Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9344832
sdk.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
sdk.js
View Options
import
{
logger
}
from
'@sentry/utils'
;
import
{
getCurrentHub
}
from
'./hub.js'
;
/** A class object that can instantiate Client objects. */
/**
* Internal function to create a new SDK client instance. The client is
* installed and then bound to the current scope.
*
* @param clientClass The client class to instantiate.
* @param options Options to pass to the client.
*/
function
initAndBind
(
clientClass
,
options
,
)
{
if
(
options
.
debug
===
true
)
{
if
((
typeof
__SENTRY_DEBUG__
===
'undefined'
||
__SENTRY_DEBUG__
))
{
logger
.
enable
();
}
else
{
// use `console.warn` rather than `logger.warn` since by non-debug bundles have all `logger.x` statements stripped
// eslint-disable-next-line no-console
console
.
warn
(
'[Sentry] Cannot initialize SDK with `debug` option using a non-debug bundle.'
);
}
}
const
hub
=
getCurrentHub
();
const
scope
=
hub
.
getScope
();
if
(
scope
)
{
scope
.
update
(
options
.
initialScope
);
}
const
client
=
new
clientClass
(
options
);
hub
.
bindClient
(
client
);
}
export
{
initAndBind
};
//# sourceMappingURL=sdk.js.map
File Metadata
Details
Attached
Mime Type
text/x-java
Expires
Fri, Jul 4, 2:50 PM (3 d, 20 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3351538
Attached To
rDWAPPS Web applications
Event Timeline
Log In to Comment