clinical_quality_language
clinical_quality_language copied to clipboard
Outputting to System.Error on Success
In src/java/cql-to-elm-cli/src/main/java/org/cqframework/cql/cql2elm/cli/CqlTranslator.java: all outputs are directed to standard error, making it impossible to check for actual errors (the program will always report failing even on success)

There are also other examples in this file where a similar issue occurs. I believe just changing every output which is not an error to System.out.println will fix the issue.