Change EOL

This commit is contained in:
Audrius Butkevicius 2015-06-28 21:18:38 +01:00
parent c68c78d412
commit e1959afb6b

View File

@ -1,15 +1,15 @@
// Copyright (C) 2015 Audrius Butkevicius and Contributors (see the CONTRIBUTORS file). // Copyright (C) 2015 Audrius Butkevicius and Contributors (see the CONTRIBUTORS file).
package client package client
import ( import (
"os" "os"
"strings" "strings"
"github.com/calmh/logger" "github.com/calmh/logger"
) )
var ( var (
debug = strings.Contains(os.Getenv("STTRACE"), "relay") || os.Getenv("STTRACE") == "all" debug = strings.Contains(os.Getenv("STTRACE"), "relay") || os.Getenv("STTRACE") == "all"
l = logger.DefaultLogger l = logger.DefaultLogger
) )