From e030ffcf45cf45a5e5a3fb4f3db5138e57832468 Mon Sep 17 00:00:00 2001 From: Oliver Tonnhofer Date: Mon, 4 Jan 2016 12:08:14 +0100 Subject: [PATCH] remove debug log.print --- mapping/matcher.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mapping/matcher.go b/mapping/matcher.go index ffab4ad..d5675bb 100644 --- a/mapping/matcher.go +++ b/mapping/matcher.go @@ -1,8 +1,6 @@ package mapping import ( - _ "log" - "github.com/omniscale/imposm3/element" "github.com/omniscale/imposm3/geom" ) @@ -32,7 +30,6 @@ func (m *Mapping) RelationMatcher() RelationMatcher { mappings := make(TagTables) m.mappings(RelationTable, mappings) filters := m.ElementFilters() - log.Print(mappings) return &tagMatcher{mappings, m.tables(RelationTable), filters, true} } @@ -40,7 +37,6 @@ func (m *Mapping) RelationMemberMatcher() RelationMatcher { mappings := make(TagTables) m.mappings(RelationMemberTable, mappings) filters := m.ElementFilters() - log.Print(mappings) return &tagMatcher{mappings, m.tables(RelationMemberTable), filters, true} }