I used a bash function to print out manually echo'd messages in bold, but it renders as normal text in the build log.
Is it possible to render the text a different font style or color in order to make it stand out when reviewing logs?
Edit- Per the request in the comment (thanks Sathi) what I tried to were two techniques outlined here: How does one output bold text in Bash?
The tput method fails because there is no terminal to interact with, while using echo -e '\033[1mYOUR_STRING\033[0m'
renders normal text. I understand why both of these would not likely work as there is not a terminal. I thought perhaps there would be an escape sequence or some other method specifically for the cloud build logs as viewed in cloud build, but I haven't seen anything when searching.