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

@@ -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.