From 247a236ad1c1567a77b0c98c40a39607bbf560ac Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Sun, 5 Jun 2022 18:27:36 -0700 Subject: [PATCH] reduce debug logging noise --- src/aws.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aws.zig b/src/aws.zig index 2af4a0e..f4e9408 100644 --- a/src/aws.zig +++ b/src/aws.zig @@ -127,7 +127,7 @@ pub fn Request(comptime action: anytype) type { // query string. TODO: RTFM on zig to figure out why aws_request.query = try options.client.allocator.dupe(u8, aws_request.path[inx..]); aws_request.path = try options.client.allocator.dupe(u8, aws_request.path[0..inx]); - log.debug("inx: {d}\n\tnew path: {s}\n\tnew query: {s}", .{ inx, aws_request.path, aws_request.query }); + // log.debug("inx: {d}\n\tnew path: {s}\n\tnew query: {s}", .{ inx, aws_request.path, aws_request.query }); options.client.allocator.free(orig_path); options.client.allocator.free(orig_query); }