Merge pull request #1657 from urbit/philip/slog-colors

Add colors for priority printfs
This commit is contained in:
Jared Tobin 2019-08-24 07:47:58 -02:30 committed by GitHub
commit 6a4030d44f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1997,9 +1997,9 @@ u3_pier_tank(c3_l tab_l, c3_w pri_w, u3_noun tac)
}
switch ( pri_w ) {
case 3: fprintf(fil_u, ">>> "); break;
case 2: fprintf(fil_u, ">> "); break;
case 1: fprintf(fil_u, "> "); break;
case 3: fprintf(fil_u, "\033[31m>>> "); break;
case 2: fprintf(fil_u, "\033[33m>> "); break;
case 1: fprintf(fil_u, "\033[32m> "); break;
}
// if we have no arvo kernel and can't evaluate nock
@ -2020,6 +2020,7 @@ u3_pier_tank(c3_l tab_l, c3_w pri_w, u3_noun tac)
_pier_wall(fil_u, wol);
}
fprintf(fil_u, "\033[0m");
u3_term_io_loja(0);
u3z(blu);
u3z(tac);