1 | import { LoggerWatcher } from '../common/logger-watcher';
|
2 | import { LogLevelCliContribution } from './logger-cli-contribution';
|
3 | import { ILoggerServer, ILoggerClient } from '../common/logger-protocol';
|
4 | export declare class ConsoleLoggerServer implements ILoggerServer {
|
5 | protected client: ILoggerClient | undefined;
|
6 | protected watcher: LoggerWatcher;
|
7 | protected cli: LogLevelCliContribution;
|
8 | protected init(): void;
|
9 | setLogLevel(name: string, newLogLevel: number): Promise<void>;
|
10 | getLogLevel(name: string): Promise<number>;
|
11 | log(name: string, logLevel: number, message: string, params: any[]): Promise<void>;
|
12 | child(name: string): Promise<void>;
|
13 | dispose(): void;
|
14 | setClient(client: ILoggerClient | undefined): void;
|
15 | }
|
16 |
|
\ | No newline at end of file |