Missed a spot where panic: could still happen

This commit is contained in:
Mitchell Hashimoto 2016-10-23 14:29:15 -07:00
parent 0c3161083c
commit 1486da91ab
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ func (g *Graph) walk(walker GraphWalker) error {
// Walk the graph.
var walkFn dag.WalkFunc
walkFn = func(v dag.Vertex) (rerr error) {
log.Printf("[DEBUG] vertex %s.%s: walking", path, dag.VertexName(v))
log.Printf("[DEBUG] vertex '%s.%s': walking", path, dag.VertexName(v))
walker.EnterVertex(v)
defer func() { walker.ExitVertex(v, rerr) }()