From 97c597d62839851780ee372866db7553d064fcc5 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Mon, 17 Jan 2022 00:52:11 -0800 Subject: [PATCH] Make ECHILD a verbose log instead, since it's not broken --- ruby/main.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ruby/main.rb b/ruby/main.rb index af1e886..0f048f4 100755 --- a/ruby/main.rb +++ b/ruby/main.rb @@ -133,9 +133,9 @@ class Shell Process.waitpid(pid) $CHILD_STATUS.exitstatus rescue Errno::ECHILD => e - # FIXME: why does this happen? - warn "#{YELLOW}[WARN]#{CLEAR} #{e.message} but child was just forked 🧐" - -3 + # FIXME: why does this happen? doesn't seem to be a real problem + logger.verbose "#{YELLOW}#{e.message}#{CLEAR} but child was just forked 🧐" + 0 end end else