mirror of
https://github.com/NixOS/nix
synced 2025-06-26 20:01:15 +02:00
printMsg(lvlError, ...) -> printError(...) etc.
This commit is contained in:
parent
4036185cb4
commit
c55bf085eb
30 changed files with 140 additions and 140 deletions
|
@ -427,9 +427,9 @@ static void prim_trace(EvalState & state, const Pos & pos, Value * * args, Value
|
|||
{
|
||||
state.forceValue(*args[0]);
|
||||
if (args[0]->type == tString)
|
||||
printMsg(lvlError, format("trace: %1%") % args[0]->string.s);
|
||||
printError(format("trace: %1%") % args[0]->string.s);
|
||||
else
|
||||
printMsg(lvlError, format("trace: %1%") % *args[0]);
|
||||
printError(format("trace: %1%") % *args[0]);
|
||||
state.forceValue(*args[1]);
|
||||
v = *args[1];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue