NOISSUE ignore PermGen warnings in log
This commit is contained in:
parent
125ddc5f93
commit
e25e076d2e
@ -225,6 +225,12 @@ void MinecraftProcess::logOutput(QString line, MessageLevel::Enum defaultLevel,
|
|||||||
{
|
{
|
||||||
MessageLevel::Enum level = defaultLevel;
|
MessageLevel::Enum level = defaultLevel;
|
||||||
|
|
||||||
|
//FIXME: make more flexible in the future
|
||||||
|
if(line.contains("ignoring option PermSize"))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Level prefix
|
// Level prefix
|
||||||
int endmark = line.indexOf("]!");
|
int endmark = line.indexOf("]!");
|
||||||
if (line.startsWith("!![") && endmark != -1)
|
if (line.startsWith("!![") && endmark != -1)
|
||||||
|
Loading…
Reference in New Issue
Block a user