UNPKG

@itwin/presentation-shared

Version:

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

21 lines 751 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 */ /* v8 ignore start */ exports.NOOP_LOGGER = { isEnabled: () => false, logError: () => { }, logWarning: () => { }, logInfo: () => { }, logTrace: () => { }, }; /* v8 ignore stop */ //# sourceMappingURL=Logging.js.map