Remove redundant 'warning:'

This commit is contained in:
Eelco Dolstra 2021-10-27 18:14:12 +02:00
parent 9c6ac9eb0e
commit 5a160171d0

View file

@ -752,7 +752,7 @@ std::pair<bool, std::string> EvalState::resolveSearchPathElem(const SearchPathEl
res = { true, path };
else {
logWarning({
.msg = hintfmt("warning: Nix search path entry '%1%' does not exist, ignoring", elem.second)
.msg = hintfmt("Nix search path entry '%1%' does not exist, ignoring", elem.second)
});
res = { false, "" };
}