mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-30 18:36:58 +03:00
NOISSUE ignore PermGen warnings in log
This commit is contained in:
parent
125ddc5f93
commit
e25e076d2e
1 changed files with 6 additions and 0 deletions
|
|
@ -225,6 +225,12 @@ void MinecraftProcess::logOutput(QString line, MessageLevel::Enum defaultLevel,
|
|||
{
|
||||
MessageLevel::Enum level = defaultLevel;
|
||||
|
||||
//FIXME: make more flexible in the future
|
||||
if(line.contains("ignoring option PermSize"))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
// Level prefix
|
||||
int endmark = line.indexOf("]!");
|
||||
if (line.startsWith("!![") && endmark != -1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue