mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 13:31:27 +12:00
Qt: only show prefix for fatal messages
Always messages are supposed to be humanly readable
This commit is contained in:
parent
9f35c3f52d
commit
de2be90636
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ struct gui_listener : logs::listener
|
|||
packet_t p,* _new = &p;
|
||||
_new->sev = msg;
|
||||
|
||||
if ((msg <= logs::level::fatal || show_prefix) && !prefix.empty())
|
||||
if ((msg == logs::level::fatal || show_prefix) && !prefix.empty())
|
||||
{
|
||||
_new->msg += "{";
|
||||
_new->msg += prefix;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue