From c43e25eaf722af3c602676a4ed7ead98a0d0ecf4 Mon Sep 17 00:00:00 2001 From: srodgers Date: Sun, 10 Nov 2019 16:12:59 -0800 Subject: [PATCH] Change LOG_LEVEL_NONE to LOG_LEVEL_DEBUG --- tasmota/xsns_54_ina226.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xsns_54_ina226.ino b/tasmota/xsns_54_ina226.ino index 6709c6e53..5fd404414 100644 --- a/tasmota/xsns_54_ina226.ino +++ b/tasmota/xsns_54_ina226.ino @@ -125,7 +125,7 @@ static void _debug_fval(const char *str, float fval, uint8_t prec = 4 ) { char fstr[32]; dtostrfd(fval, prec, fstr); - AddLog_P2( LOG_LEVEL_NONE, PSTR("%s: %s"), str, fstr ); + AddLog_P2( LOG_LEVEL_DEBUG, PSTR("%s: %s"), str, fstr ); }