X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/acb9d9bf1055383f3fdb9b888e82eef0134f3e02..d0b5b8bcb412f9f169f2320623bd516afb34413b:/doc/bugs/ikiwiki_lacks_a_--quiet.mdwn diff --git a/doc/bugs/ikiwiki_lacks_a_--quiet.mdwn b/doc/bugs/ikiwiki_lacks_a_--quiet.mdwn index c9351c860..9c90f82a6 100644 --- a/doc/bugs/ikiwiki_lacks_a_--quiet.mdwn +++ b/doc/bugs/ikiwiki_lacks_a_--quiet.mdwn @@ -3,3 +3,27 @@ report errors would be nice. -- RichiH > Except for building wrappers, and possibly progress cruft output to > stderr by git (gag), ikiwiki is quiet by default. --[[Joey]] + +>> Correct, which means it's not quite quiet: + + % ikiwiki --setup foo --rebuild + generating wrappers.. + successfully generated foo + successfully generated foo + rebuilding wiki.. + scanning [...] + [...] + building [...] + [...] + done + +Yes, I can simply redirect the output, but an option would be cleaner, imo. -- Richard + +> The output above looks like verbose mode output to me (the scanning/building lines, at least). Check you haven't enabled it in your setup file by accident. I get the following: + + $ ikiwiki --setup setup + successfully generated [cgi] + successfully generated [post-update] + skipping bad filename [...] + +> I've written a patch ([here](https://github.com/jmtd/ikiwiki/tree/silence-generated), pull request sent) that fixes the 'generated...' lines. -- [[Jon]]