LibWebView: Paint callgrind instructions a bit less aggressively

On my terminal, the colors chosen before were very hard to read.
This commit is contained in:
Timothy Flynn 2025-05-08 08:06:17 -04:00 committed by Tim Flynn
parent 15356b7036
commit 4916ae6d67
Notes: github-actions[bot] 2025-05-08 14:13:22 +00:00

View file

@ -62,8 +62,8 @@ static ErrorOr<NonnullRefPtr<ClientType>> launch_server_process(
if (browser_options.profile_helper_process == process_type) {
dbgln();
dbgln("\033[1;45mLaunched {} process under callgrind!\033[0m", server_name);
dbgln("\033[100mRun `\033[4mcallgrind_control -i on\033[24m` to start instrumentation and `\033[4mcallgrind_control -i off\033[24m` stop it again.\033[0m");
dbgln("\033[1;34mLaunched {} process under callgrind!\033[0m", server_name);
dbgln("\033[1;36mRun `\033[4mcallgrind_control -i on\033[24m` to start instrumentation and `\033[4mcallgrind_control -i off\033[24m` stop it again.\033[0m");
dbgln();
}