use bashio::log.info for status

This commit is contained in:
Benjamin Dodge 2021-12-20 18:24:14 -08:00
parent c57f7e15e5
commit 4b95201769

View file

@ -5,4 +5,6 @@
# ============================================================================== # ==============================================================================
sleep 30 sleep 30
bashio::log.info "Requesting current status from WireGuard..." bashio::log.info "Requesting current status from WireGuard..."
exec wg show while read line; do
bashio::log.info "${line}"
done < <(wg show)