Merge pull request #9670 from DavHau/log-lines

saner default for log-lines: change to 25
This commit is contained in:
Eelco Dolstra 2024-01-05 14:39:50 +01:00 committed by GitHub
commit dedbbbb451
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -144,7 +144,7 @@ public:
*/
bool verboseBuild = true;
Setting<size_t> logLines{this, 10, "log-lines",
Setting<size_t> logLines{this, 25, "log-lines",
"The number of lines of the tail of "
"the log to show if a build fails."};