MCPcopy Index your code
hub / github.com/OneNoteDev/WebClipper / WebConsole

Class WebConsole

src/scripts/logging/webConsole.ts:3–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import {ConsoleOutput} from "./consoleOutput";
2
3export class WebConsole implements ConsoleOutput {
4 warn(message: string, object: any): void {
5 console.warn(message, object);
6 }
7
8 error(message: string, object: any): void {
9 console.error(message, object);
10 }
11
12 info(message: string, object: any): void {
13 console.info(message, object);
14 }
15
16 log(message: string, object: any): void {
17 console.log(message, object);
18 }
19}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected