Skip to content

Commit 5414b9a

Browse files
authored
Add files via upload
1 parent 867a1a0 commit 5414b9a

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/WebResponses.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -749,11 +749,9 @@ AsyncFileResponse::AsyncFileResponse(FS &fs, const String &path, const char *con
749749
char *filename = (char *)path.c_str() + filenameStart;
750750
snprintf(buf, sizeof(buf), T_attachment, filename);
751751
addHeader(T_Content_Disposition, buf, false);
752-
log_d("%s: download %s",filename, buf);
753752
} else {
754753
// Serve file inline (display in browser)
755754
addHeader(T_Content_Disposition, T_inline, false);
756-
log_d("%s: inline %s", path, T_inline);
757755
}
758756

759757
_code = 200;

0 commit comments

Comments
 (0)