From 20b41836e255d14ab27aeed7d24ebbddedfa7119 Mon Sep 17 00:00:00 2001 From: geeksville Date: Sat, 18 Apr 2020 09:22:08 -0700 Subject: [PATCH] clarify log msg --- src/rf95/CustomRF95.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rf95/CustomRF95.cpp b/src/rf95/CustomRF95.cpp index 62c4ff8b3..697800e53 100644 --- a/src/rf95/CustomRF95.cpp +++ b/src/rf95/CustomRF95.cpp @@ -20,7 +20,7 @@ bool CustomRF95::canSleep() bool res = (_mode == RHModeInitialising || _mode == RHModeIdle || _mode == RHModeRx) && !isRx && txQueue.isEmpty(); if (!res) // only print debug messages if we are vetoing sleep - DEBUG_MSG("canSleep, mode=%d, isRx=%d, txEmpty=%d, txGood=%d\n", _mode, isRx, txQueue.isEmpty(), _txGood); + DEBUG_MSG("radio wait to sleep, mode=%d, isRx=%d, txEmpty=%d, txGood=%d\n", _mode, isRx, txQueue.isEmpty(), _txGood); return res; }