only log that the queue is full (and the full damn contents of the queue)

when verbose logging is on.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2381 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2003-04-05 20:48:04 +00:00
parent 1b29c23f6e
commit 728ddcf575
@@ -1,5 +1,5 @@
//
// $Id: SoundManager.java,v 1.56 2003/04/05 19:00:28 mdb Exp $
// $Id: SoundManager.java,v 1.57 2003/04/05 20:48:04 ray Exp $
package com.threerings.media.sound;
@@ -338,7 +338,7 @@ public class SoundManager
_queue.append(PLAY);
_queue.append(skey);
} else {
} else if (_verbose.getValue()) {
Log.warning("SoundManager not playing sound because " +
"too many sounds in queue [key=" + skey +
", type=" + type + ", queue=" + _queue + "].");