mirror of
https://github.com/kiegroup/git-backporting.git
synced 2025-04-25 12:52:13 +00:00
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
19 lines
No EOL
358 B
TypeScript
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;
|
|
} |