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
currently we have either DEBUG flag or no logs at all.
DEBUG
DEBUG is useful to understand exactly what's happening, but in most cases is too noisy.
We should have a normal log output that offers information everybody will be happy to see.
we should use for this startGroup and endGroup from actions/core example:
startGroup
endGroup
core.startGroup('Do some function') doSomeFunction() core.endGroup()
The text was updated successfully, but these errors were encountered:
cyamonide
No branches or pull requests
currently we have either
DEBUG
flag or no logs at all.DEBUG
is useful to understand exactly what's happening, but in most cases is too noisy.We should have a normal log output that offers information everybody will be happy to see.
we should use for this
startGroup
andendGroup
from actions/coreexample:
The text was updated successfully, but these errors were encountered: