Skip to content

Commit

Permalink
sync: Remove debug logging of request JSON. (#1410)
Browse files Browse the repository at this point in the history
This was helpful while switching to the protobuf lib but due to the way SLOGD works it isn't limited to just debug invocations and is quite noisy
  • Loading branch information
russellhancox authored Aug 8, 2024
1 parent 6093118 commit 013b0b4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Source/santasyncservice/SNTSyncStage.mm
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ - (NSMutableURLRequest *)requestWithMessage:(google::protobuf::Message *)message
return nil;
}

SLOGD(@"Request JSON: %s", json.c_str());
return [self requestWithData:[NSData dataWithBytes:json.data() length:json.size()]
contentType:@"application/json"];
}
Expand Down

0 comments on commit 013b0b4

Please sign in to comment.