@itwin/core-frontend
Version:
iTwin.js frontend components
43 lines • 2.01 kB
JavaScript
;
/*---------------------------------------------------------------------------------------------
* 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.FrontendLoggerCategory = void 0;
/** Logger categories used by this package
* @note All logger categories in this package start with the `core-frontend` prefix.
* @see [Logger]($bentley)
* @public
* @extensions
*/
var FrontendLoggerCategory;
(function (FrontendLoggerCategory) {
FrontendLoggerCategory["Package"] = "core-frontend";
/** The logger category used by the [[IModelConnection]] class and other related classes. */
FrontendLoggerCategory["IModelConnection"] = "core-frontend.IModelConnection";
/** The logger category used for NativeApp */
FrontendLoggerCategory["NativeApp"] = "core-frontend.NativeApp";
/** The logger category used for making network requests. */
FrontendLoggerCategory["Request"] = "core-frontend.Request";
/**
* The logger category used by FeatureTrackingManager
* @alpha
*/
FrontendLoggerCategory["FeatureTracking"] = "core-frontend.FeatureTracking";
/**
* The logger category used by RealityData
* @alpha
*/
FrontendLoggerCategory["RealityData"] = "core-frontend.RealityData";
/** The logger category used for creating and displaying graphics. */
FrontendLoggerCategory["Render"] = "core-frontend.Render";
/** The logger category used for loading and executing Extensions
* @alpha
*/
FrontendLoggerCategory["Extensions"] = "core-frontend.Extensions";
})(FrontendLoggerCategory || (exports.FrontendLoggerCategory = FrontendLoggerCategory = {}));
//# sourceMappingURL=FrontendLoggerCategory.js.map