about summary refs log tree commit diff stats
path: root/html/linux
diff options
context:
space:
mode:
Diffstat (limited to 'html/linux')
0 files changed, 0 insertions, 0 deletions
cc9a173655ec0a80756'>^
d6d0c18 ^





a6c8162 ^








1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27







             
                                               
                   

                     





                                       








                                         
package main

import (
	"fmt"
	"log"
	"os"
)

var testport = fmt.Sprintf(":%v", confObj.Port)
var hasInit = false

func initTestConf() {
	if !hasInit {
		initConfig()
		tmpls = initTemplates()
		logToNull()
		hasInit = true
	}
}

func logToNull() {
	hush, err := os.Open("/dev/null")
	if err != nil {
		log.Printf("%v\n", err)
	}
	log.SetOutput(hush)
}