Browse Source

Removed log statement

Wirecog 6 years ago
parent
commit
ecb831c588
1 changed files with 0 additions and 3 deletions
  1. 0
    3
      static.go

+ 0
- 3
static.go View File

@@ -98,14 +98,11 @@ func bundleJavaScript(jsfiles []string, shouldMinify bool) {
98 98
 
99 99
 func bundleCSS(cssfiles []string, shouldMinify bool) {
100 100
 
101
-	return
102 101
 	outputFileName := "cogimports.css"
103 102
 	if shouldMinify == true {
104 103
 		outputFileName = "cogimports.min.css"
105 104
 	}
106 105
 
107
-	log.Println("output css name: "+outputFileName+" bool val: ", shouldMinify)
108
-
109 106
 	var result []byte = make([]byte, 0)
110 107
 
111 108
 	if StaticAssetsPath == "" {