mirror of
https://github.com/urbit/shrub.git
synced 2024-12-02 08:55:07 +03:00
Merge pull request #1657 from urbit/philip/slog-colors
Add colors for priority printfs
This commit is contained in:
commit
6a4030d44f
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user