UNPKG

@itwin/core-frontend

Version:
40 lines 1.86 kB
/*--------------------------------------------------------------------------------------------- * 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 */ /** Logger categories used by this package * @note All logger categories in this package start with the `core-frontend` prefix. * @see [Logger]($bentley) * @public * @extensions */ export 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 || (FrontendLoggerCategory = {})); //# sourceMappingURL=FrontendLoggerCategory.js.map