UNPKG

@itwin/presentation-backend

Version:

Backend of iTwin.js Presentation library

72 lines 5.86 kB
"use strict"; /*--------------------------------------------------------------------------------------------- * Copyright (c) Bentley Systems, Incorporated. All rights reserved. * See LICENSE.md in the project root for license terms and full copyright notice. *--------------------------------------------------------------------------------------------*/ /** @packageDocumentation * @module Logging */ Object.defineProperty(exports, "__esModule", { value: true }); exports.PresentationBackendNativeLoggerCategory = exports.PresentationBackendLoggerCategory = void 0; /** * Logger categories used by this package * @note All logger categories in this package start with the `presentation-backend` prefix. * @see [Logger]($bentley) * @public */ var PresentationBackendLoggerCategory; (function (PresentationBackendLoggerCategory) { PresentationBackendLoggerCategory["Package"] = "presentation-backend"; /** The logger category used by the [[PresentationManager]] class and other related classes. */ PresentationBackendLoggerCategory["PresentationManager"] = "presentation-backend.PresentationManager"; /** The logger category used by Presentation RPC implementation. */ PresentationBackendLoggerCategory["Rpc"] = "presentation-backend.Rpc"; /** The logger category used by Presentation IPC implementation. */ PresentationBackendLoggerCategory["Ipc"] = "presentation-backend.Ipc"; })(PresentationBackendLoggerCategory || (exports.PresentationBackendLoggerCategory = PresentationBackendLoggerCategory = {})); /** * Logger categories used by this package * @note Logger categories used by the [[PresentationManager]] native addon. * @see [Logger]($bentley) * @public */ var PresentationBackendNativeLoggerCategory; (function (PresentationBackendNativeLoggerCategory) { PresentationBackendNativeLoggerCategory["ECObjects"] = "ECObjects"; PresentationBackendNativeLoggerCategory["ECObjects_ECExpressions"] = "ECObjects.ECExpressions"; PresentationBackendNativeLoggerCategory["ECObjects_ECExpressions_Parse"] = "ECObjects.ECExpressions.Parse"; PresentationBackendNativeLoggerCategory["ECObjects_ECExpressions_Evaluate"] = "ECObjects.ECExpressions.Evaluate"; PresentationBackendNativeLoggerCategory["ECPresentation"] = "ECPresentation"; PresentationBackendNativeLoggerCategory["ECPresentation_Connections"] = "ECPresentation.Connections"; PresentationBackendNativeLoggerCategory["ECPresentation_Tasks"] = "ECPresentation.Tasks"; PresentationBackendNativeLoggerCategory["ECPresentation_Hierarchies"] = "ECPresentation.Navigation"; PresentationBackendNativeLoggerCategory["ECPresentation_Hierarchies_Cache"] = "ECPresentation.Navigation.Cache"; PresentationBackendNativeLoggerCategory["ECPresentation_Content"] = "ECPresentation.Content"; PresentationBackendNativeLoggerCategory["ECPresentation_Update"] = "ECPresentation.Update"; PresentationBackendNativeLoggerCategory["ECPresentation_Update_Hierarchies"] = "ECPresentation.Update.Hierarchies"; PresentationBackendNativeLoggerCategory["ECPresentation_Update_Content"] = "ECPresentation.Update.Content"; PresentationBackendNativeLoggerCategory["ECPresentation_Rules"] = "ECPresentation.Rules"; PresentationBackendNativeLoggerCategory["ECPresentation_RulesetVariables"] = "ECPresentation.RulesetVariables"; PresentationBackendNativeLoggerCategory["ECPresentation_ECExpressions"] = "ECPresentation.ECExpressions"; PresentationBackendNativeLoggerCategory["ECPresentation_Serialization"] = "ECPresentation.Serialization"; /* eslint-disable @typescript-eslint/no-duplicate-enum-values */ /** @deprecated in 4.0 - will not be removed until after 2026-06-13. The logging namespace is not used anymore. */ PresentationBackendNativeLoggerCategory["ECPresentation_Localization"] = "ECPresentation.Localization"; /** @deprecated in 4.0 - will not be removed until after 2026-06-13. Use [[ECPresentation]] */ PresentationBackendNativeLoggerCategory["ECPresentation_RulesEngine"] = "ECPresentation.RulesEngine"; /** @deprecated in 4.0 - will not be removed until after 2026-06-13. Use [[ECPresentation_Content]] */ PresentationBackendNativeLoggerCategory["ECPresentation_RulesEngine_Content"] = "ECPresentation.Content"; /** @deprecated in 4.0 - will not be removed until after 2026-06-13. The logging namespace is not used anymore. */ PresentationBackendNativeLoggerCategory["ECPresentation_RulesEngine_Localization"] = "ECPresentation.Localization"; /** @deprecated in 4.0 - will not be removed until after 2026-06-13. Use [[ECPresentation_Hierarchies]] */ PresentationBackendNativeLoggerCategory["ECPresentation_RulesEngine_Navigation"] = "ECPresentation.Navigation"; /** @deprecated in 4.0 - will not be removed until after 2026-06-13. Use [[ECPresentation_Hierarchies_Cache]] */ PresentationBackendNativeLoggerCategory["ECPresentation_RulesEngine_Navigation_Cache"] = "ECPresentation.Navigation.Cache"; /** @deprecated in 4.0 - will not be removed until after 2026-06-13. Use [[ECPresentation_Tasks]] */ PresentationBackendNativeLoggerCategory["ECPresentation_RulesEngine_Threads"] = "ECPresentation.Tasks"; /** @deprecated in 4.0 - will not be removed until after 2026-06-13. Use [[ECPresentation_Update]] */ PresentationBackendNativeLoggerCategory["ECPresentation_RulesEngine_Update"] = "ECPresentation.Update"; /** @deprecated in 4.0 - will not be removed until after 2026-06-13. Use [[ECPresentation_RulesetVariables]] */ PresentationBackendNativeLoggerCategory["ECPresentation_RulesEngine_RulesetVariables"] = "ECPresentation.RulesetVariables"; })(PresentationBackendNativeLoggerCategory || (exports.PresentationBackendNativeLoggerCategory = PresentationBackendNativeLoggerCategory = {})); //# sourceMappingURL=BackendLoggerCategory.js.map