15 lines
340 B
TypeScript
15 lines
340 B
TypeScript
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
export enum LogLevel {
|
|
Trace = 0,
|
|
Information,
|
|
Warning,
|
|
Error,
|
|
None
|
|
}
|
|
|
|
export interface ILogger {
|
|
log(logLevel: LogLevel, message: string): void;
|
|
}
|