소스 검색

remove some prints

Chris Mullins 8 년 전
부모
커밋
353ebb3fca
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 4
      lib/GithubClient/GithubClient.cpp

+ 1 - 4
lib/GithubClient/GithubClient.cpp

@@ -71,20 +71,17 @@ bool GithubClient::download(const String& path, const String& fsPath) {
   String tmpFile = fsPath + ".download_tmp";
   File f = SPIFFS.open(tmpFile.c_str(), "w");
   
-  printf("1.");
-  
   if (!f) {
     Serial.print(F("ERROR - could not open file for downloading: "));
     Serial.println(fsPath);
     return false;
   }
-  printf("2.");
+  printf(".");
   
   if (!download(path, f)) {
     f.close();
     return false;
   }
-  printf("3.");
   
   f.flush();
   f.close();