aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Burdette <bburdette@gmail.com>2020-04-30 16:31:47 -0600
committerBen Burdette <bburdette@gmail.com>2020-04-30 16:31:47 -0600
commitf5d3215c8740feec8053a697eca04c12eb71191b (patch)
tree2049f541b33bdb9b72fde8302de0faf50811a5ad
parent171b4ce85c491563004ad6b74377a8cb70a7d06c (diff)
logError
-rw-r--r--src/error-demo/error-demo.cc2
-rw-r--r--src/nix/verify.cc4
2 files changed, 2 insertions, 4 deletions
diff --git a/src/error-demo/error-demo.cc b/src/error-demo/error-demo.cc
index 2c4f2da6e..514258416 100644
--- a/src/error-demo/error-demo.cc
+++ b/src/error-demo/error-demo.cc
@@ -65,7 +65,6 @@ int main()
.description = "Vomit description",
});
-
// Error in a program; no hint and no nix code.
logError(
ErrorInfo { .name = "name",
@@ -80,7 +79,6 @@ int main()
.hint = hintfmt("there was a %1%", "warning"),
});
-
// Warning with nix file, line number, column, and the lines of
// code where a warning occurred.
SymbolTable testTable;
diff --git a/src/nix/verify.cc b/src/nix/verify.cc
index 9b0658803..6e043dc2d 100644
--- a/src/nix/verify.cc
+++ b/src/nix/verify.cc
@@ -137,7 +137,7 @@ struct CmdVerify : StorePathsCommand
doSigs(info2->sigs);
} catch (InvalidPath &) {
} catch (Error & e) {
- printError(format(ANSI_RED "error:" ANSI_NORMAL " %s") % e.what());
+ logError(e.info());
}
}
@@ -156,7 +156,7 @@ struct CmdVerify : StorePathsCommand
done++;
} catch (Error & e) {
- printError(format(ANSI_RED "error:" ANSI_NORMAL " %s") % e.what());
+ logError(e.info());
failed++;
}