Merge pull request #11006 from s-hadinger/filenotfound_debug

Move message to DEBUG level
This commit is contained in:
Theo Arends 2021-02-17 18:27:07 +01:00 committed by GitHub
commit fd260661a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}