mirror of https://github.com/arendst/Tasmota.git
Merge pull request #11006 from s-hadinger/filenotfound_debug
Move message to DEBUG level
This commit is contained in:
commit
fd260661a3
|
@ -279,7 +279,7 @@ bool TfsFileExists(const char *fname){
|
||||||
|
|
||||||
bool yes = ffsp->exists(fname);
|
bool yes = ffsp->exists(fname);
|
||||||
if (!yes) {
|
if (!yes) {
|
||||||
AddLog(LOG_LEVEL_INFO, PSTR("TFS: File not found"));
|
AddLog(LOG_LEVEL_DEBUG, PSTR("TFS: File not found"));
|
||||||
}
|
}
|
||||||
return yes;
|
return yes;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue