Apply logging prefix on output from DEBUG_MEMORY

This commit is contained in:
Geoff Bourne
2026-03-14 09:35:43 -05:00
parent c5a298fa05
commit dfdc95572a
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
##########################################