aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeonXP <i@neonxp.dev>2023-01-02 04:16:35 +0300
committerNeonXP <i@neonxp.dev>2023-01-02 04:16:35 +0300
commit61f4b22467cc1799ecb027e5b467d79f5d5ebaf5 (patch)
tree6b42f40dcf48594f8d698a0984d514922ec24cd9
parent0d81ddbdea09816262ae1cfa0ed5cccc1b3ee3cb (diff)
removed logv0.0.1
-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
}