Skip to content

Commit

Permalink
Re-namespace logrus to a version that works hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
bobtfish committed May 19, 2017
1 parent da838ea commit 9ab1651
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Gomfile
@@ -1,4 +1,4 @@
gom 'github.com/sirupsen/logrus', :commit => '0afea37159ef443ea0ca20dbd45ad7006b95edfe'
gom 'github.com/bobtfish/logrus', :commit => 'f3e8c2ddf6ef2369b0c685eecc9e4c1e736c9c86'
gom 'github.com/aws/aws-sdk-go/aws', :commit => 'a0a042689f81e61e24b16237b502bcbc4a05dfc0'
gom 'github.com/aws/aws-sdk-go/private/endpoints', :commit => 'a0a042689f81e61e24b16237b502bcbc4a05dfc0'
gom 'github.com/aws/aws-sdk-go/private/protocol/ec2query', :commit => 'a0a042689f81e61e24b16237b502bcbc4a05dfc0'
Expand Down
2 changes: 1 addition & 1 deletion aws/manage_route_spec.go
Expand Up @@ -3,7 +3,7 @@ package aws
import (
"errors"
"fmt"
log "github.com/sirupsen/logrus"
log "github.com/bobtfish/logrus"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/bobtfish/AWSnycast/healthcheck"
"github.com/bobtfish/AWSnycast/instancemetadata"
Expand Down
2 changes: 1 addition & 1 deletion aws/route_table_manager.go
@@ -1,7 +1,7 @@
package aws

import (
log "github.com/sirupsen/logrus"
log "github.com/bobtfish/logrus"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/aws/session"
Expand Down
2 changes: 1 addition & 1 deletion config/route_table.go
Expand Up @@ -3,7 +3,7 @@ package config
import (
"errors"
"fmt"
log "github.com/sirupsen/logrus"
log "github.com/bobtfish/logrus"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/bobtfish/AWSnycast/aws"
"github.com/bobtfish/AWSnycast/healthcheck"
Expand Down
2 changes: 1 addition & 1 deletion daemon/daemon.go
@@ -1,7 +1,7 @@
package daemon

import (
log "github.com/sirupsen/logrus"
log "github.com/bobtfish/logrus"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/bobtfish/AWSnycast/aws"
"github.com/bobtfish/AWSnycast/config"
Expand Down
2 changes: 1 addition & 1 deletion healthcheck/command.go
Expand Up @@ -2,7 +2,7 @@ package healthcheck

import (
"errors"
log "github.com/sirupsen/logrus"
log "github.com/bobtfish/logrus"
utils "github.com/bobtfish/AWSnycast/utils"
"github.com/hashicorp/go-multierror"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion healthcheck/healthcheck.go
Expand Up @@ -3,7 +3,7 @@ package healthcheck
import (
"errors"
"fmt"
log "github.com/sirupsen/logrus"
log "github.com/bobtfish/logrus"
"github.com/hashicorp/go-multierror"
"net"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion healthcheck/ping.go
@@ -1,7 +1,7 @@
package healthcheck

import (
log "github.com/sirupsen/logrus"
log "github.com/bobtfish/logrus"
"os/exec"
)

Expand Down
2 changes: 1 addition & 1 deletion healthcheck/tcp.go
Expand Up @@ -3,7 +3,7 @@ package healthcheck
import (
"errors"
"fmt"
log "github.com/sirupsen/logrus"
log "github.com/bobtfish/logrus"
utils "github.com/bobtfish/AWSnycast/utils"
"github.com/hashicorp/go-multierror"
"net"
Expand Down
2 changes: 1 addition & 1 deletion healthcheck/tcp_test.go
Expand Up @@ -4,7 +4,7 @@ import (
"crypto/tls"
"crypto/x509"
"fmt"
log "github.com/sirupsen/logrus"
log "github.com/bobtfish/logrus"
"github.com/bobtfish/AWSnycast/testhelpers"
"github.com/stretchr/testify/assert"
"io/ioutil"
Expand Down
2 changes: 1 addition & 1 deletion instancemetadata/instancemetadata.go
Expand Up @@ -3,7 +3,7 @@ package instancemetadata
import (
"errors"
"fmt"
log "github.com/sirupsen/logrus"
log "github.com/bobtfish/logrus"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/ec2metadata"
"github.com/aws/aws-sdk-go/aws/session"
Expand Down
4 changes: 2 additions & 2 deletions main.go
Expand Up @@ -3,8 +3,8 @@ package main
import (
"flag"
"fmt"
log "github.com/sirupsen/logrus"
logrus_syslog "github.com/sirupsen/logrus/hooks/syslog"
log "github.com/bobtfish/logrus"
logrus_syslog "github.com/bobtfish/logrus/hooks/syslog"
"github.com/bobtfish/AWSnycast/daemon"
"github.com/bobtfish/AWSnycast/version"
"log/syslog"
Expand Down

0 comments on commit 9ab1651

Please sign in to comment.