UNPKG

@itwin/presentation-shared

Version:

The package contains types and utilities used across different iTwin.js Presentation packages.

20 lines 731 B
"use strict"; /*--------------------------------------------------------------------------------------------- * Copyright (c) Bentley Systems, Incorporated. All rights reserved. * See LICENSE.md in the project root for license terms and full copyright notice. *--------------------------------------------------------------------------------------------*/ Object.defineProperty(exports, "__esModule", { value: true }); exports.NOOP_LOGGER = void 0; /** * A logger implementation that does nothing. * @public */ /* c8 ignore next 7 */ exports.NOOP_LOGGER = { isEnabled: () => false, logError: () => { }, logWarning: () => { }, logInfo: () => { }, logTrace: () => { }, }; //# sourceMappingURL=Logging.js.map