github.com/developest/gtm-core@v1.0.4-0.20220111132249-cc80a3372c3f/util/profile_off.go (about) 1 // +build !profile 2 3 // Copyright 2016 Michael Schenk. All rights reserved. 4 // Use of this source code is governed by a MIT-style 5 // license that can be found in the LICENSE file. 6 7 package util 8 9 var ( 10 // Profile is a no-op implemention of the profile logger 11 Profile = func(s ...string) func() { 12 return func() { 13 } 14 } 15 )