Don't show message like "File DONE ..." "Checking file"

Issue #98 resolved
高志闽 created an issue
 I used CTI to check my project.Then will show message like "File DONE ..." "Checking file".I wan't show these message.Use redirect command which like "fauxpas -c $MAINFAUXPASJSON --workspace $WORKSPACEPATH --scheme $TARGET check $PROJPATH >/dev/null",it don't work.
How to hide these message.

Comments (2)

  1. Ali Rantakari repo owner

    The progress messages are printed to the standard error stream, so you can hide them by redirecting stderr to /dev/null:

    fauxpas … 2>/dev/null
    
  2. Log in to comment