From d7f6a9678e688f3da2a2e67737c7a2d58eeb5ce3 Mon Sep 17 00:00:00 2001 From: "jvde.github" Date: Mon, 3 Feb 2025 22:25:41 +0100 Subject: [PATCH] cerr -> Error --- Library/Beast.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Beast.h b/Library/Beast.h index 6b101cd72f..5d9e3adc86 100644 --- a/Library/Beast.h +++ b/Library/Beast.h @@ -237,7 +237,7 @@ class Beast : public SimpleStreamInOut } else if (msg.msgtype != '1') { - std::cerr << "Unknown message type: " << msg.msgtype << std::endl; + Error() << "Unknown message type: " << msg.msgtype; } Send(&msg, 1, tag);