aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--objectid.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/objectid.go b/objectid.go
index 4892b04..52b408f 100644
--- a/objectid.go
+++ b/objectid.go
@@ -22,7 +22,6 @@ import (
"encoding/base64"
"encoding/binary"
"fmt"
- "log"
"math/rand"
"sync/atomic"
"time"
@@ -54,7 +53,6 @@ func FromTime(t time.Time) ID {
r = binary.BigEndian.AppendUint64(r, p1)
r = binary.BigEndian.AppendUint64(r, p2)
r = binary.BigEndian.AppendUint64(r, p3)
- log.Println(r)
return r
}