Skip to content
Snippets Groups Projects
Commit 25efba15 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

SL-18837: On Windows, LLLeap partial final line test failed.

Add DEBUG log output to try to diagnose.
parent 929aa15c
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
...@@ -376,6 +376,17 @@ class LLLeapImpl: public LLLeap ...@@ -376,6 +376,17 @@ class LLLeapImpl: public LLLeap
// Read all remaining bytes and log. // Read all remaining bytes and log.
LL_INFOS("LLLeap") << mDesc << ": " << rest << LL_ENDL; LL_INFOS("LLLeap") << mDesc << ": " << rest << LL_ENDL;
} }
/*--------------------------- diagnostic ---------------------------*/
else if (data["eof"].asBoolean())
{
LL_DEBUGS("LLLeap") << mDesc << " ended, no partial line" << LL_ENDL;
}
else
{
LL_DEBUGS("LLLeap") << mDesc << " (still running, " << childerr.size()
<< " bytes pending)" << LL_ENDL;
}
/*------------------------- end diagnostic -------------------------*/
return false; return false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment