diff --git a/mage_helpers/build.go b/mage_helpers/build.go
index 63f5cdd73062cbdb7fe1677cfc6c43524bcb1cf0..c85654f977f6e05ea9ec846a069b96f6d9f38660 100644
--- a/mage_helpers/build.go
+++ b/mage_helpers/build.go
@@ -45,8 +45,10 @@ func Build(dir string, module string, isDebug bool) error {
 	fmt.Println(fmt.Sprintf("Building %v", handler))
 
 	outputFileName := handler
-	fmt.Println("Checking to use bootstrap")
-	if os.Getenv("ENVIRONMENT") == "playground" {
+	env := os.Getenv("ENVIRONMENT")
+	fmt.Println("ENV:", env)
+	if env == "playground" {
+		fmt.Println("Using 'bootstrap' for output file name")
 		outputFileName = "bootstrap"
 	}