Changing an error in the input framework to a warning.

This commit is contained in:
Robin Sommer 2012-06-15 16:24:52 -07:00
parent 464732bfce
commit 41ef1072ec
8 changed files with 13 additions and 8 deletions

View file

@ -696,8 +696,8 @@ bool Manager::RemoveStream(Stream *i)
if ( i->removed )
{
reporter->Error("Stream %s is already queued for removal. Ignoring remove.", i->name.c_str());
return false;
reporter->Warning("Stream %s is already queued for removal. Ignoring remove.", i->name.c_str());
return true;
}
i->removed = true;