UNPKG

@itwin/presentation-shared

Version:

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

18 lines 649 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Bentley Systems, Incorporated. All rights reserved. * See LICENSE.md in the project root for license terms and full copyright notice. *--------------------------------------------------------------------------------------------*/ /** * A logger implementation that does nothing. * @public */ /* v8 ignore start */ export const NOOP_LOGGER = { isEnabled: () => false, logError: () => { }, logWarning: () => { }, logInfo: () => { }, logTrace: () => { }, }; /* v8 ignore stop */ //# sourceMappingURL=Logging.js.map