Skip to content
Snippets Groups Projects
Commit 0df896f2 authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

Add debug line

parent d75275a0
No related branches found
No related tags found
1 merge request!67fix for latest client release
...@@ -368,6 +368,8 @@ func (w *wasmModel) receiveHelper( ...@@ -368,6 +368,8 @@ func (w *wasmModel) receiveHelper(
copy(msgID[:], newMessage.MessageID) copy(msgID[:], newMessage.MessageID)
uuid, errLookup := w.msgIDLookup(msgID) uuid, errLookup := w.msgIDLookup(msgID)
if uuid != 0 && errLookup == nil { if uuid != 0 && errLookup == nil {
jww.WARN.Printf("result undefined, but found"+
" duplicate? %d, %s", uuid, msgID)
return uuid, nil return uuid, nil
} }
return 0, errors.Errorf("uuid lookup failure: %+v", err) return 0, errors.Errorf("uuid lookup failure: %+v", err)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment