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:
parent
ecbb8e9c0a
commit
bfca5fc395
8 changed files with 25 additions and 32 deletions
|
@ -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}};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue