Skip to content

Commit 510c48e

Browse files
committed
fix : logged string just disappears
1 parent 0bfdca6 commit 510c48e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/start-utils

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ function logError() {
173173
if isDebugging; then
174174
set +x
175175
fi
176-
log $(getErrorColoredLogString "$*")
176+
log "$(getErrorColoredLogString "$*")"
177177
if isDebugging; then
178178
set -x
179179
fi
@@ -190,7 +190,7 @@ function warning() {
190190
}
191191

192192
function logWarning() {
193-
log $(getWarningColoredLogString "$*")
193+
log "$(getWarningColoredLogString "$*")"
194194
}
195195

196196
function isNumeric() {

0 commit comments

Comments
 (0)