diff options
author | Alex Auvolat <alex@adnab.me> | 2020-02-01 15:05:44 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-02-01 15:05:44 +0100 |
commit | da2c37bb955bbdfceb95bbcc48e1267716152804 (patch) | |
tree | e04a071472b81af6713d7107cdebce66ec217de2 /util.go | |
parent | c3bfcdf9a1c80b9ed27840f203cf3f14ef0bb113 (diff) | |
download | bottin-da2c37bb955bbdfceb95bbcc48e1267716152804.tar.gz bottin-da2c37bb955bbdfceb95bbcc48e1267716152804.zip |
Better logging
Diffstat (limited to 'util.go')
-rw-r--r-- | util.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,12 +3,12 @@ package main import ( "encoding/json" "fmt" - "log" "strings" "time" uuid "github.com/google/uuid" consul "github.com/hashicorp/consul/api" + log "github.com/sirupsen/logrus" ) func dnToConsul(dn string) (string, error) { |