From ff7765b631e9b2a6c7c2d1e849e200b1b6c8c949 Mon Sep 17 00:00:00 2001 From: Clombrong Date: Thu, 14 Aug 2025 22:21:07 +0200 Subject: fix(stream): remove the infamous Success! message --- lib/stream.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/stream.ml b/lib/stream.ml index e2fe707..b4d5833 100644 --- a/lib/stream.ml +++ b/lib/stream.ml @@ -87,7 +87,7 @@ let negotiate feature portal {starttls; sasl; _} : unit Lwt.t = let* auth_result = authenticate portal sasl mechanisms in match auth_result with | Error err -> Lwt.fail_with (parse_auth_error err) - | Ok _ -> print_endline "Success!"; Lwt.return_unit + | Ok _ -> Lwt.return_unit else Lwt.fail InsufficientEncryption in let open Feature in -- cgit v1.2.3