mirror of
https://github.com/kiegroup/git-backporting.git
synced 2025-07-19 13:08:25 +02:00
feat: pull request backporting
feat: backport still open pull requests
This commit is contained in:
commit
b3936e019a
53 changed files with 48467 additions and 0 deletions
15
src/service/logger/logger-service.ts
Normal file
15
src/service/logger/logger-service.ts
Normal file
|
@ -0,0 +1,15 @@
|
|||
/**
|
||||
* Logger service interface providing the most commong logging functionalities
|
||||
*/
|
||||
export default interface LoggerService {
|
||||
|
||||
trace(message: string): void;
|
||||
|
||||
debug(message: string): void;
|
||||
|
||||
info(message: string): void;
|
||||
|
||||
warn(message: string): void;
|
||||
|
||||
error(message: string): void;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue