File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -1157,8 +1157,11 @@ bool FtpServer::doList()
1157
1157
1158
1158
if ( dir.isDirectory ()) {
1159
1159
data.print ( F (" +/,\t " ) );
1160
+ DEBUG_PRINT (F (" +/,\t " ));
1160
1161
} else {
1161
- data.print ( F (" +r,s" ) );
1162
+ data.print ( F (" +r,s" ) );
1163
+ DEBUG_PRINT (F (" +r,s" ));
1164
+ }
1162
1165
#if ESP8266
1163
1166
data.print ( long ( dir.fileSize ()) );
1164
1167
data.print ( F (" ,\t " ) );
@@ -1172,8 +1175,13 @@ bool FtpServer::doList()
1172
1175
data.print ( long ( fileDir.size ()) );
1173
1176
data.print ( F (" ,\t " ) );
1174
1177
data.println ( fileDir.name () );
1178
+
1179
+ DEBUG_PRINT ( long ( fileDir.size ()));
1180
+ DEBUG_PRINT ( F (" ,\t " ) );
1181
+ DEBUG_PRINTLN ( fileDir.name () );
1182
+
1175
1183
#endif
1176
- }
1184
+
1177
1185
1178
1186
nbMatch ++;
1179
1187
return true ;
You can’t perform that action at this time.
0 commit comments