Add tool dir.

This commit is contained in:
zicla
2019-04-26 03:08:22 +08:00
parent aed1ee2001
commit c5de9ce9eb
28 changed files with 23 additions and 22 deletions

4
code/cache/cache.go vendored
View File

@ -5,7 +5,7 @@ import (
"fmt"
"sort"
"sync"
"tank/code/util"
"tank/code/tool/util"
"time"
)
@ -388,7 +388,7 @@ func (table *CacheTable) MostAccessed(count int64) []*CacheItem {
// 打印日志
func (table *CacheTable) log(format string, v ...interface{}) {
//全局日志记录
//TODO: 全局日志记录
//LOGGER.Info(format, v...)
}