mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-04 22:17:59 +08:00

* Update dependencies Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Update dependencies Fix Timescale Reader bug. Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Revert influxdb-reader changes Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Update dependencies to latest supported versions Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> --------- Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> Co-authored-by: Drasko DRASKOVIC <drasko.draskovic@gmail.com>
13 lines
301 B
Go
13 lines
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) |