Rerun fallbacks (#260297)

This commit is contained in:
Christof Marti
2025-09-08 16:28:54 +02:00
parent 931b8b5276
commit f5f2ea58fc
5 changed files with 77 additions and 81 deletions

View File

@@ -18,6 +18,10 @@ export class Log {
this.output.trace(message);
}
public debug(message: string): void {
this.output.debug(message);
}
public info(message: string): void {
this.output.info(message);
}