mirror of
https://github.com/kiegroup/git-backporting.git
synced 2025-04-24 20:32:14 +00:00
15 lines
No EOL
303 B
TypeScript
15 lines
No EOL
303 B
TypeScript
|
|
/**
|
|
* Common logger class based on the console.log functionality
|
|
*/
|
|
export default class Logger {
|
|
|
|
log(prefix: string, ...str: string[]) {
|
|
// eslint-disable-next-line no-console
|
|
console.log.apply(console, [`[${prefix.padEnd(5)}]`, ...str]);
|
|
}
|
|
|
|
emptyLine() {
|
|
this.log("", "");
|
|
}
|
|
} |