1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 00:11:17 +02:00

change status messages to info level

This commit is contained in:
Ben Burdette 2020-05-13 09:52:36 -06:00
parent ecbb8e9c0a
commit bfca5fc395
8 changed files with 25 additions and 32 deletions

View file

@ -857,7 +857,7 @@ int Pid::kill()
#if __FreeBSD__ || __APPLE__
if (errno != EPERM || ::kill(pid, 0) != 0)
#endif
printError((SysError("killing process %d", pid).msg()));
logError(SysError("killing process %d", pid).info());
}
return wait();
@ -1447,17 +1447,6 @@ string base64Decode(const string & s)
}
// void callFailure(const std::function<void(std::exception_ptr exc)> & failure, std::exception_ptr exc)
// {
// try {
// failure(exc);
// } catch (std::exception & e) {
// printError("uncaught exception: %s", e.what());
// abort();
// }
// }
static Sync<std::pair<unsigned short, unsigned short>> windowSize{{0, 0}};