Pārlūkot izejas kodu

Adds newlines to console output

(not sure when this changed)
main
Eric Amodio pirms 7 gadiem
vecāks
revīzija
2a70e5b4cb
1 mainītis faili ar 3 papildinājumiem un 3 dzēšanām
  1. +3
    -3
      src/logger.ts

+ 3
- 3
src/logger.ts Parādīt failu

@ -43,7 +43,7 @@ export class Logger {
static log(message?: any, ...params: any[]): void {
if (debug && level !== OutputLevel.Silent) {
console.log(ConsolePrefix, message, ...params);
console.log(ConsolePrefix, message, ...params, '\n');
}
if (level === OutputLevel.Verbose) {
@ -53,7 +53,7 @@ export class Logger {
static error(ex: Error, classOrMethod?: string, ...params: any[]): void {
if (debug) {
console.error(ConsolePrefix, ex, ...params);
console.error(ConsolePrefix, ex, ...params, '\n');
}
if (level !== OutputLevel.Silent) {
@ -65,7 +65,7 @@ export class Logger {
static warn(message?: any, ...params: any[]): void {
if (debug) {
console.warn(ConsolePrefix, message, ...params);
console.warn(ConsolePrefix, message, ...params, '\n');
}
if (level !== OutputLevel.Silent) {

Notiek ielāde…
Atcelt
Saglabāt