Welcome to mirror list, hosted at ThFree Co, Russian Federation.

switch.go « vos « internal « govendor « kardianos « github.com « vendor - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5120996be189155334bb0f608ce170326d2ac3d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package vos

import (
	"log"
)

const debugLog = false

func l(fname, path string) {
	if debugLog {
		log.Println(fname, path)
	}
}