From 013b0b40afaf5d0f0ec6bebc50f6a0010b617bda Mon Sep 17 00:00:00 2001 From: Russell Hancox Date: Thu, 8 Aug 2024 14:06:52 -0400 Subject: [PATCH] sync: Remove debug logging of request JSON. (#1410) 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 --- Source/santasyncservice/SNTSyncStage.mm | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/santasyncservice/SNTSyncStage.mm b/Source/santasyncservice/SNTSyncStage.mm index 4f282969..2634f88c 100644 --- a/Source/santasyncservice/SNTSyncStage.mm +++ b/Source/santasyncservice/SNTSyncStage.mm @@ -86,7 +86,6 @@ using santa::NSStringToUTF8String; return nil; } - SLOGD(@"Request JSON: %s", json.c_str()); return [self requestWithData:[NSData dataWithBytes:json.data() length:json.size()] contentType:@"application/json"]; }