mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-03 07:06:30 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
13 lines
No EOL
301 B
Go
13 lines
No EOL
301 B
Go
package concurrent
|
|
|
|
import (
|
|
"os"
|
|
"log"
|
|
"io/ioutil"
|
|
)
|
|
|
|
// ErrorLogger is used to print out error, can be set to writer other than stderr
|
|
var ErrorLogger = log.New(os.Stderr, "", 0)
|
|
|
|
// InfoLogger is used to print informational message, default to off
|
|
var InfoLogger = log.New(ioutil.Discard, "", 0) |