UNPKG

@aws-amplify/core

Version:
13 lines (10 loc) 338 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import { LoggingProvider } from '../types'; export interface Logger { debug(msg: string): void; info(msg: string): void; warn(msg: string): void; error(msg: string): void; addPluggable(pluggable: LoggingProvider): void; }