don't log the one command that's supposed to get posted post-stop

This commit is contained in:
Eric House 2013-11-11 21:35:42 -08:00
parent 8099b77e52
commit 98989abb14

View file

@ -651,7 +651,7 @@ public class JNIThread extends Thread {
{
QueueElem elem = new QueueElem( cmd, true, args );
m_queue.add( elem );
if ( m_stopped ) {
if ( m_stopped && ! JNICmd.CMD_NONE.equals(cmd) ) {
DbgUtils.logf( "WARNING: adding %s to stopped thread!!!",
cmd.toString() );
DbgUtils.printStack();