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
Each success logging via logger.success should add a check mark (\u2713) in front of the logged message like so:
logger.success
\u2713
logger.success('Bump completed successfully'); // Prints '✓ Bump completed successfully'
which works but when we call the logger with an on purpose indentation like so:
logger.success(' Bump completed successfully');
we get two spaces between the mark and the first char of the message:
'✓ Bump completed successfully'
instead we should get the following output:
' ✓ Bump completed successfully'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Each success logging via
logger.success
should add a check mark (\u2713
) in front of the logged message like so:which works but when we call the logger with an on purpose indentation like so:
we get two spaces between the mark and the first char of the message:
instead we should get the following output:
The text was updated successfully, but these errors were encountered: