This file is indexed.

/usr/share/gocode/src/github.com/go-chef/chef/debug.go is in golang-github-go-chef-chef-dev 0.0.1+git20161023.60.deb8c38-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
9
// +build debug

package chef

import "log"

func debug(fmt string, args ...interface{}) {
	log.Printf(fmt, args...)
}