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