saner default for log-lines: change to 25

This seems to be a much saner default. 10 lines are just not enough in so many cases.
This commit is contained in:
DavHau 2023-12-27 19:57:27 +07:00
parent e23983db82
commit b6313f64f7
1 changed files with 1 additions and 1 deletions

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."};