mirror of
https://github.com/kiegroup/git-backporting.git
synced 2025-07-22 22:38:25 +02:00
15 lines
No EOL
292 B
TypeScript
15 lines
No EOL
292 B
TypeScript
/**
|
|
* 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;
|
|
} |