@itwin/presentation-shared
Version:
The package contains types and utilities used across different iTwin.js Presentation packages.
17 lines • 629 B
JavaScript
/*---------------------------------------------------------------------------------------------
* 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
*/
/* c8 ignore next 7 */
export const NOOP_LOGGER = {
isEnabled: () => false,
logError: () => { },
logWarning: () => { },
logInfo: () => { },
logTrace: () => { },
};
//# sourceMappingURL=Logging.js.map