diff options
author | NeonXP <i@neonxp.dev> | 2023-01-02 04:16:35 +0300 |
---|---|---|
committer | NeonXP <i@neonxp.dev> | 2023-01-02 04:16:35 +0300 |
commit | 61f4b22467cc1799ecb027e5b467d79f5d5ebaf5 (patch) | |
tree | 6b42f40dcf48594f8d698a0984d514922ec24cd9 /objectid.go | |
parent | 0d81ddbdea09816262ae1cfa0ed5cccc1b3ee3cb (diff) |
removed logv0.0.1
Diffstat (limited to 'objectid.go')
-rw-r--r-- | objectid.go | 2 |
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 } |