@simplism/core
Advanced tools
Comparing version 7.0.3 to 7.0.4
@@ -101,6 +101,3 @@ "use strict"; | ||
}; | ||
var text = colors.grey + "[" + log.id + "] " + log.now + " - " + log.group + " - " + log.name + " - " + colors[severity] + log.severity + ": " + convertedLogs[0] + colors.log; | ||
if (convertedLogs.length > 1) { | ||
text += "\r\n" + convertedLogs.slice(1).join("\r\n"); | ||
} | ||
var text = colors.grey + "[" + log.id + "] " + log.now + " - " + log.group + " - " + log.name + " - " + colors[severity] + log.severity + ": " + convertedLogs.join("\r\n") + colors.log; | ||
if (this._config.consoleLogSeverities.includes(severity)) { | ||
@@ -107,0 +104,0 @@ console.log(text); |
{ | ||
"name": "@simplism/core", | ||
"version": "7.0.3", | ||
"version": "7.0.4", | ||
"description": "Simplism Core Package", | ||
@@ -5,0 +5,0 @@ "repository": "github:kslhunter/simplism", |
@@ -113,6 +113,3 @@ import {DateTime} from "../types/DateTime"; | ||
let text = `${colors.grey}[${log.id}] ${log.now} - ${log.group} - ${log.name} - ${colors[severity]}${log.severity}: ${convertedLogs[0]}${colors.log}`; | ||
if (convertedLogs.length > 1) { | ||
text += "\r\n" + convertedLogs.slice(1).join("\r\n"); | ||
} | ||
const text = `${colors.grey}[${log.id}] ${log.now} - ${log.group} - ${log.name} - ${colors[severity]}${log.severity}: ${convertedLogs.join("\r\n")}${colors.log}`; | ||
@@ -119,0 +116,0 @@ // 콘솔 출력 |
{ | ||
"extends": "../../tsconfig.json", | ||
"compilerOptions": { | ||
"sourceMap": true, | ||
"declaration": true, | ||
"lib": [ | ||
@@ -7,0 +5,0 @@ "es2017" |
Sorry, the diff of this file is not supported yet
152672
2824