瀏覽代碼

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();