@eth-optimism/ethereumjs-vm
Version:
An Ethereum VM implementation
14 lines (13 loc) • 368 B
TypeScript
export declare class Logger {
private _namespace;
private _debugger;
private _section;
constructor(namespace: string);
log(message: string): void;
scope(namespace: string, id?: string): Logger;
get enabled(): boolean;
get namespace(): string;
logSection(message: string): void;
open(message: string): void;
close(): void;
}