Apply logging prefix on output from DEBUG_MEMORY (#3975)

This commit is contained in:
Geoff Bourne
2026-03-17 08:04:46 -05:00
committed by GitHub
parent 68bb650617
commit cf8ab31e25
2 changed files with 8 additions and 2 deletions
+2 -2
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
##########################################