i was getting conversion error for the followng:
 def queueCursor(collectionKey: Long, seq:Long)(func: (Message)=>Boolean) =
{
    collectionCursor(collectionKey, encodeLong(seq)) { (key, value) =>
      val seq = decodeLong(key)
      info("Seq read: %L", seq)



Had to change the argument from %L to %d to remove the error:
      info("Seq read: %d", seq)



--
View this message in context: 
http://activemq.2283324.n4.nabble.com/possible-bug-with-logging-in-leveldb-LevelDBClient-scala-tp4676484.html
Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.

Reply via email to