Skip to content

Commit d623518

Browse files
committed
Removing left in Serial.print
1 parent 2f7e8ad commit d623518

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/YoutubeApi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ String YoutubeApi::sendGetToYoutube(String command) {
8585

8686
bool YoutubeApi::getChannelStatistics(String channelId){
8787
String command="https://" YTAPI_HOST "/youtube/v3/channels?part=statistics&id="+channelId; //If you can't find it(for example if you have a custom url) look here: https://www.youtube.com/account_advanced
88-
Serial.println(command);
88+
//Serial.println(command);
8989
String response = sendGetToYoutube(command); //recieve reply from youtube
9090
DynamicJsonBuffer jsonBuffer;
9191
JsonObject& root = jsonBuffer.parseObject(response);

0 commit comments

Comments
 (0)