CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
diag-api.js26 linesDownload Raw Back to esnext
1/*2 * Copyright The OpenTelemetry Authors3 *4 * Licensed under the Apache License, Version 2.0 (the "License");5 * you may not use this file except in compliance with the License.6 * You may obtain a copy of the License at7 *8 *      https://www.apache.org/licenses/LICENSE-2.09 *10 * Unless required by applicable law or agreed to in writing, software11 * distributed under the License is distributed on an "AS IS" BASIS,12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.13 * See the License for the specific language governing permissions and14 * limitations under the License.15 */16// Split module-level variable definition into separate files to allow17// tree-shaking on each api instance.18import { DiagAPI } from './api/diag';19/**20 * Entrypoint for Diag API.21 * Defines Diagnostic handler used for internal diagnostic logging operations.22 * The default provides a Noop DiagLogger implementation which may be changed via the23 * diag.setLogger(logger: DiagLogger) function.24 */25export const diag = DiagAPI.instance();26//# sourceMappingURL=diag-api.js.map