From 29b5a00b92836b942a8a3f6a476bb5079097be0d Mon Sep 17 00:00:00 2001 From: ngaut Date: Wed, 4 Nov 2015 12:37:32 +0800 Subject: [PATCH] meta: Fix format arguments --- meta/autoid/autoid.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/autoid/autoid.go b/meta/autoid/autoid.go index d08466ff65..132be1edfc 100644 --- a/meta/autoid/autoid.go +++ b/meta/autoid/autoid.go @@ -68,7 +68,7 @@ func (alloc *allocator) Alloc(tableID int64) (int64, error) { } alloc.base++ - log.Infof("Alloc id %d, table ID:%d, from %p, database ID:%s", alloc.base, tableID, alloc, alloc.dbID) + log.Infof("Alloc id %d, table ID:%d, from %p, database ID:%d", alloc.base, tableID, alloc, alloc.dbID) return alloc.base, nil }