mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-01-13 08:03:07 +08:00
16 lines
252 B
TypeScript
16 lines
252 B
TypeScript
import { debug, info, warning } from "@actions/core";
|
|
|
|
export class LoggerService {
|
|
warn(message: string): void {
|
|
warning(message);
|
|
}
|
|
|
|
info(message: string): void {
|
|
info(message);
|
|
}
|
|
|
|
debug(message: string) {
|
|
debug(message);
|
|
}
|
|
}
|