Remove debug print

This commit is contained in:
Bob Farrell 2024-05-01 21:30:53 +01:00
parent 06675dccb8
commit 33a1596238

View File

@ -80,7 +80,6 @@ fn save(self: *Self) !void {
defer self.allocator.free(encrypted);
const encoded = try jetzig.util.base64Encode(self.allocator, encrypted);
defer self.allocator.free(encoded);
std.debug.print("encoded: {s}\n", .{encoded});
try self.cookies.put(cookie_name, .{ .value = encoded });
}