We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In some cases System.err.println and printStackTrace is being used instead of a log function (See InProcessServer, GrpcServer and probably more).
System.err.println
printStackTrace
Also we have to consider when we should use System.err.println```for ouput instead of stdio``.
System.err.println```for ouput instead of
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In some cases
System.err.println
andprintStackTrace
is being used instead of a log function (See InProcessServer, GrpcServer and probably more).printStackTrace
should have a logging function which I believe should have the same urgency for all exceptions.System.err.println
should maybe be a fatal log.Also we have to consider when we should use
System.err.println```for ouput instead of
stdio``.The text was updated successfully, but these errors were encountered: