UNPKG

@azure/communication-react

Version:

React library for building modern communication user experiences utilizing Azure Communication Services

27 lines 1.11 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { createClientLogger } from '@azure/logger'; /** * @private */ export const compositeLogger = createClientLogger('communication-react:composite'); /** * @private * Enum for event names used in the composite logger. * These events are used to track various actions and states within the composite. */ export var EventNames; (function (EventNames) { // Info EventNames["COMPOSITE_INITIALIZED"] = "COMPOSITE_INITIALIZED"; EventNames["COMPOSITE_RENDERED"] = "COMPOSITE_RENDERED"; EventNames["COMPOSITE_CLOSED"] = "COMPOSITE_CLOSED"; EventNames["COMPOSITE_AUDIO_CONTEXT_CREATED"] = "COMPOSITE_AUDIO_CONTEXT_CREATED"; EventNames["COMPOSITE_AUDIO_CONTEXT_CLOSED"] = "COMPOSITE_AUDIO_CONTEXT_CLOSED"; EventNames["COMPOSITE_AUDIO_CONTEXT_RECREATED"] = "COMPOSITE_AUDIO_CONTEXT_RECREATED"; // Warning EventNames["COMPOSITE_WARNING"] = "COMPOSITE_WARNING"; // Error EventNames["COMPOSITE_ERROR"] = "COMPOSITE_ERROR"; })(EventNames || (EventNames = {})); //# sourceMappingURL=logger.js.map