/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ import type { ILogger } from './Logger.types'; /** * Initialize the developer logger and subscribe to host metric streaming. * * When called, the SDK subscribes to Telemetry.subscribeMetrics via the * channel's stream() method. The host yields metrics as they're collected * (network requests, session load, data request summaries). Each metric * is forwarded to the developer's ILogger.logMetric(). * * The subscription runs in the background — this function starts the * stream consumer and returns immediately. */ export declare function initializeLogger(logger: ILogger): void; //# sourceMappingURL=LoggerManager.d.ts.map