Mark "Disable Logging", add explanatory log message

This commit is contained in:
Eladash 2021-08-28 19:21:13 +03:00 committed by Megamouse
parent 2431fcc2a1
commit f185aba5fc
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ namespace rpcs3::utils
{ {
if (!was_silenced) if (!was_silenced)
{ {
sys_log.notice("Disabling logging..."); sys_log.success("Disabling logging! Do not create issues on GitHub or on the forums while logging is disabled.");
} }
logs::silence(); logs::silence();
@ -49,7 +49,7 @@ namespace rpcs3::utils
if (was_silenced) if (was_silenced)
{ {
sys_log.notice("Logging enabled"); sys_log.success("Logging enabled");
} }
} }