@itwin/core-common
Version:
iTwin.js components common to frontend and backend
29 lines • 1.62 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.CommonLoggerCategory = void 0;
/** Logger categories used by this package
* @see [Logger]($bentley)
* @public
* @extensions
*/
var CommonLoggerCategory;
(function (CommonLoggerCategory) {
/** The logger category used by common APIs relating to text annotations. */
CommonLoggerCategory["Annotations"] = "core-common.Annotations";
/** The logger category used by common classes relating to ElementProps. */
CommonLoggerCategory["ElementProps"] = "core-common.ElementProps";
/** The logger category used by common classes relating to Geometry. */
CommonLoggerCategory["Geometry"] = "core-common.Geometry";
/** The logger category used by the portions of the RpcInterface framework that run on the backend. */
CommonLoggerCategory["RpcInterfaceBackend"] = "core-backend.RpcInterface";
/** The logger category used by the portions of the RpcInterface framework that run on the frontend. */
CommonLoggerCategory["RpcInterfaceFrontend"] = "core-frontend.RpcInterface";
})(CommonLoggerCategory || (exports.CommonLoggerCategory = CommonLoggerCategory = {}));
//# sourceMappingURL=CommonLoggerCategory.js.map