From 4b97059d2205ca6e51fc9447fc729f14bff76ef5 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Wed, 29 Apr 2015 11:51:25 +1000 Subject: [PATCH] Added the op ID. --- connection.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/connection.go b/connection.go index 1f92678..50f72b6 100644 --- a/connection.go +++ b/connection.go @@ -65,7 +65,8 @@ func (c *Connection) log( // Format the actual message to be printed. msg := fmt.Sprintf( - "%v:%v] %v", + "Op 0x%016x %v:%v] %v", + opID, path.Base(file), line, fmt.Sprintf(format, v...))