aboutsummaryrefslogtreecommitdiff
path: root/src/nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-09-21 16:11:01 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-09-21 16:54:53 +0200
commitc55bf085eb914bd06bba00670a293b3c0528b81f (patch)
treea73205057b57129438f1c068526f3629fadc9704 /src/nix
parent4036185cb4bacbf6acaaa1a906924dfa2cdd9413 (diff)
printMsg(lvlError, ...) -> printError(...) etc.
Diffstat (limited to 'src/nix')
-rw-r--r--src/nix/sigs.cc4
-rw-r--r--src/nix/verify.cc10
2 files changed, 7 insertions, 7 deletions
diff --git a/src/nix/sigs.cc b/src/nix/sigs.cc
index 9932aa4a9..0ff1b9f7c 100644
--- a/src/nix/sigs.cc
+++ b/src/nix/sigs.cc
@@ -84,7 +84,7 @@ struct CmdCopySigs : StorePathsCommand
pool.process();
- printMsg(lvlInfo, format("imported %d signatures") % added);
+ printInfo(format("imported %d signatures") % added);
}
};
@@ -132,7 +132,7 @@ struct CmdSignPaths : StorePathsCommand
}
}
- printMsg(lvlInfo, format("added %d signatures") % added);
+ printInfo(format("added %d signatures") % added);
}
};
diff --git a/src/nix/verify.cc b/src/nix/verify.cc
index f2b6acdfb..5314a42a4 100644
--- a/src/nix/verify.cc
+++ b/src/nix/verify.cc
@@ -87,7 +87,7 @@ struct CmdVerify : StorePathsCommand
if (hash.first != info->narHash) {
logger->incProgress(corruptedLabel);
corrupted = 1;
- printMsg(lvlError,
+ printError(
format("path ‘%s’ was modified! expected hash ‘%s’, got ‘%s’")
% info->path % printHash(info->narHash) % printHash(hash.first));
}
@@ -128,7 +128,7 @@ struct CmdVerify : StorePathsCommand
doSigs(info2->sigs);
} catch (InvalidPath &) {
} catch (Error & e) {
- printMsg(lvlError, format(ANSI_RED "error:" ANSI_NORMAL " %s") % e.what());
+ printError(format(ANSI_RED "error:" ANSI_NORMAL " %s") % e.what());
}
}
@@ -139,7 +139,7 @@ struct CmdVerify : StorePathsCommand
if (!good) {
logger->incProgress(untrustedLabel);
untrusted++;
- printMsg(lvlError, format("path ‘%s’ is untrusted") % info->path);
+ printError(format("path ‘%s’ is untrusted") % info->path);
}
}
@@ -148,7 +148,7 @@ struct CmdVerify : StorePathsCommand
done++;
} catch (Error & e) {
- printMsg(lvlError, format(ANSI_RED "error:" ANSI_NORMAL " %s") % e.what());
+ printError(format(ANSI_RED "error:" ANSI_NORMAL " %s") % e.what());
logger->incProgress(failedLabel);
failed++;
}
@@ -159,7 +159,7 @@ struct CmdVerify : StorePathsCommand
pool.process();
- printMsg(lvlInfo, format("%d paths checked, %d untrusted, %d corrupted, %d failed")
+ printInfo(format("%d paths checked, %d untrusted, %d corrupted, %d failed")
% done % untrusted % corrupted % failed);
throw Exit(