summaryrefslogtreecommitdiffhomepage
path: root/table/table.go
diff options
context:
space:
mode:
authorISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2015-08-25 11:29:24 +0900
committerISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2015-08-25 11:45:23 +0900
commit1d8c71e22b9c974db66ff41cba81ae601ea14dd7 (patch)
tree25e458da32ddc543352452741119aa295dd9a5f5 /table/table.go
parent64ddb52890451da4c9877f8b3273fb9fe35f878c (diff)
*: better log msg
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'table/table.go')
-rw-r--r--table/table.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/table/table.go b/table/table.go
index 0d6abd29..d40ac9c4 100644
--- a/table/table.go
+++ b/table/table.go
@@ -182,8 +182,8 @@ func (t *Table) getOrCreateDest(nlri bgp.AddrPrefixInterface) *Destination {
if dest == nil {
log.WithFields(log.Fields{
"Topic": "Table",
- "Key": t.routeFamily,
- }).Debugf("create Destination with key %s", tableKey)
+ "Key": tableKey,
+ }).Debugf("create Destination")
dest = NewDestination(nlri)
t.setDestination(tableKey, dest)
}