git-backporting/src/service/logger/logger-service.ts
Andrea Lamparelli 0098dd47e2 feat(issue-77): handle multiple target branches
fix: https://github.com/kiegroup/git-backporting/issues/77

This enhancement allow users to backport the same change to multiple
branches with one single tool invocation
2023-08-03 18:40:28 +02:00

19 lines
No EOL
358 B
TypeScript

/**
* Logger service interface providing the most commong logging functionalities
*/
export default interface LoggerService {
setContext(newContext: string): void;
clearContext(): void;
trace(message: string): void;
debug(message: string): void;
info(message: string): void;
warn(message: string): void;
error(message: string): void;
}