Compare commits

...

1 Commits

Author SHA1 Message Date
Geoff Bourne
dfdc95572a Apply logging prefix on output from DEBUG_MEMORY 2026-03-14 09:35:43 -05:00
2 changed files with 8 additions and 2 deletions

View File

@@ -54,8 +54,8 @@ fi
if isTrue "${DEBUG_MEMORY:-false}"; then
log "Memory usage and availability (in MB)"
uname -pars
free -m
uname -pars | applyLogPrefix
free -m | applyLogPrefix
fi
##########################################

View File

@@ -125,6 +125,12 @@ function logn() {
echo -n "[init] $*"
}
# Use as
# cmd | applyLogPrefix
function applyLogPrefix() {
sed 's/^/[init] /'
}
function log() {
local oldState
# The return status when listing options is zero if all optnames are enabled, non- zero otherwise.