We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fccb05 commit 3f26056Copy full SHA for 3f26056
src/util/piped_process.cpp
@@ -378,7 +378,9 @@ piped_processt::send_responset piped_processt::send(const std::string &message)
378
}
379
INVARIANT(
380
message_size == bytes_written,
381
- "Number of bytes written to sub process must match message size.");
+ "Number of bytes written to sub process must match message size."
382
+ "Message size is " + std::to_string(message_size) + " but " +
383
+ std::to_string(bytes_written) + " bytes were written.");
384
#else
385
// send message to solver process
386
int send_status = fputs(message.c_str(), command_stream);
0 commit comments