This commit is contained in:
Lily Tsuru 2024-02-02 07:56:46 -05:00
parent 6a3e288d74
commit 8196f711bc
2 changed files with 4 additions and 4 deletions

View File

@ -60,8 +60,8 @@ namespace nanosm {
void Process::OnReady(int eventMask) { void Process::OnReady(int eventMask) {
// In our case, any readiness signaled by the pidfd means the process exited // In our case, any readiness signaled by the pidfd means the process exited
// so this will never block (or really, wait). But in the case that it does // so this will never block (or really, wait).
auto res = waitid(P_PIDFD, pidFd, &siginfo, WNOHANG | WEXITED); waitid(P_PIDFD, pidFd, &siginfo, WNOHANG | WEXITED);
// Post a callback to call the user's exit callback (if one exists) // Post a callback to call the user's exit callback (if one exists)
eventLoop.Post([self = shared_from_this()]() { eventLoop.Post([self = shared_from_this()]() {

View File

@ -26,12 +26,12 @@ namespace nanosm::log {
template <class... Args> template <class... Args>
constexpr void Warn(std::string_view component, std::string formatString, Args... args) { constexpr void Warn(std::string_view component, std::string formatString, Args... args) {
return LogImpl(component, "Info", formatString, std::make_format_args(args...)); return LogImpl(component, "Warning", formatString, std::make_format_args(args...));
} }
template <class... Args> template <class... Args>
constexpr void Error(std::string_view component, std::string formatString, Args... args) { constexpr void Error(std::string_view component, std::string formatString, Args... args) {
return LogImpl<STDERR_FILENO>(component, "Info", formatString, std::make_format_args(args...)); return LogImpl<STDERR_FILENO>(component, "Error", formatString, std::make_format_args(args...));
} }
} // namespace nanosm::log } // namespace nanosm::log