mirror of
https://github.com/NixOS/nix
synced 2025-06-30 19:57:59 +02:00
* The `-v' flag no longer takes an argument; it should be repeated
instead (e.g., `-vvvv' for lots of output). Default is to only print error messages.
This commit is contained in:
parent
3b521bb1bd
commit
0a0c1fcb4d
6 changed files with 29 additions and 38 deletions
|
@ -130,7 +130,7 @@ void deletePath(string path)
|
|||
}
|
||||
|
||||
|
||||
Verbosity verbosity = lvlNormal;
|
||||
Verbosity verbosity = lvlError;
|
||||
|
||||
static int nestingLevel = 0;
|
||||
|
||||
|
@ -165,7 +165,7 @@ void msg(Verbosity level, const format & f)
|
|||
|
||||
void debug(const format & f)
|
||||
{
|
||||
msg(lvlDebug, format("debug: %1%") % f.str());
|
||||
msg(lvlDebug, f);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue