You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The unix philosophy generalizes stderr for writing information about errors, not necessarily just errors themselves. Check out how tools like curl use stderr for diagnostic output (progress meters, and other diagnostic information all go to stderr). stdout is usually reserved for output that is meant to be piped to other tools.
tsc-multi writes to
stderr
even when it just says "Found 0 e 88FA rrors". It should usestdout
in the success case.The text was updated successfully, but these errors were encountered: