From 18d6d54343d017aaee2de511e12131e3baab2f7a Mon Sep 17 00:00:00 2001 From: Stephan Hadinger Date: Wed, 17 Feb 2021 17:49:07 +0100 Subject: [PATCH] Move message to DEBUG level --- tasmota/xdrv_50_filesystem.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xdrv_50_filesystem.ino b/tasmota/xdrv_50_filesystem.ino index 5cf5b310f..2ed092618 100644 --- a/tasmota/xdrv_50_filesystem.ino +++ b/tasmota/xdrv_50_filesystem.ino @@ -279,7 +279,7 @@ bool TfsFileExists(const char *fname){ bool yes = ffsp->exists(fname); if (!yes) { - AddLog(LOG_LEVEL_INFO, PSTR("TFS: File not found")); + AddLog(LOG_LEVEL_DEBUG, PSTR("TFS: File not found")); } return yes; }