From 097c8a1166113490a28e760a7c5475575250d979 Mon Sep 17 00:00:00 2001
From: Brian Tiger Chow <brian.holderchow@gmail.com>
Date: Mon, 12 Jan 2015 21:30:37 -0800
Subject: [PATCH] feat(main): change pprof flag to IPFS_PROF

@jbenet @whyrusleeping thoughts?
---
 cmd/ipfs/main.go | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/cmd/ipfs/main.go b/cmd/ipfs/main.go
index 31ea2c46a..6916c401e 100644
--- a/cmd/ipfs/main.go
+++ b/cmd/ipfs/main.go
@@ -35,9 +35,10 @@ var log = eventlog.Logger("cmd/ipfs")
 var errHelpRequested = errors.New("Help Requested")
 
 const (
-	cpuProfile  = "ipfs.cpuprof"
-	heapProfile = "ipfs.memprof"
-	errorFormat = "ERROR: %v\n\n"
+	EnvEnableProfiling = "IPFS_PROF"
+	cpuProfile         = "ipfs.cpuprof"
+	heapProfile        = "ipfs.memprof"
+	errorFormat        = "ERROR: %v\n\n"
 )
 
 type cmdInvocation struct {
@@ -512,9 +513,7 @@ func allInterruptSignals() chan os.Signal {
 func profileIfEnabled() (func(), error) {
 	// FIXME this is a temporary hack so profiling of asynchronous operations
 	// works as intended.
-	if u.GetenvBool("DEBUG") || os.Getenv("IPFS_LOGGING") == "debug" {
-		u.Debug = true
-		u.SetDebugLogging()
+	if os.Getenv(EnvEnableProfiling) != "" {
 		stopProfilingFunc, err := startProfiling() // TODO maybe change this to its own option... profiling makes it slower.
 		if err != nil {
 			return nil, err
-- 
GitLab