UNPKG

@itwin/core-common

Version:

iTwin.js components common to frontend and backend

26 lines 1.48 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 * @see [Logger]($bentley) * @public * @extensions */ export 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 || (CommonLoggerCategory = {})); //# sourceMappingURL=CommonLoggerCategory.js.map