Merge pull request #102172 from grahamc/stage-1-datestamps

stage-1: add datestamps to logs
This commit is contained in:
Graham Christensen
2020-10-30 16:13:02 -04:00
committed by GitHub

View File

@@ -120,7 +120,7 @@ eval "exec $logOutFd>&1 $logErrFd>&2"
if test -w /dev/kmsg; then
tee -i < /tmp/stage-1-init.log.fifo /proc/self/fd/"$logOutFd" | while read -r line; do
if test -n "$line"; then
echo "<7>stage-1-init: $line" > /dev/kmsg
echo "<7>stage-1-init: [$(date)] $line" > /dev/kmsg
fi
done &
else