# HG changeset patch # User Alain Mazy # Date 1711644544 -3600 # Node ID dca738d7846bcdd6b34245257d1e9abc3835046f # Parent 42a33df3db3c97e34d65485ad2b5569fff743863 clarified error message diff -r 42a33df3db3c -r dca738d7846b OrthancFramework/Sources/HttpServer/HttpOutput.cpp --- a/OrthancFramework/Sources/HttpServer/HttpOutput.cpp Tue Mar 26 10:17:28 2024 +0100 +++ b/OrthancFramework/Sources/HttpServer/HttpOutput.cpp Thu Mar 28 17:49:04 2024 +0100 @@ -75,7 +75,7 @@ if (hasContentLength_ && contentPosition_ != contentLength_) { - LOG(ERROR) << "This HTTP answer has not sent the proper number of bytes in its body"; + LOG(ERROR) << "This HTTP answer has not sent the proper number of bytes in its body. The remote client has likely closed the connection."; } }