Skip to content

Commit d76a69c

Browse files
committed
Use cesanta/glog instead of golang/glog
For --logbufsecs
1 parent 721c841 commit d76a69c

File tree

13 files changed

+18
-18
lines changed

13 files changed

+18
-18
lines changed

auth_server/authn/ext_auth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"strings"
2424
"syscall"
2525

26-
"github.com/golang/glog"
26+
"github.com/cesanta/glog"
2727
)
2828

2929
type ExtAuthConfig struct {

auth_server/authn/github_auth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"strings"
2929
"time"
3030

31-
"github.com/golang/glog"
31+
"github.com/cesanta/glog"
3232
)
3333

3434
type GitHubAuthConfig struct {

auth_server/authn/google_auth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"strings"
2828
"time"
2929

30-
"github.com/golang/glog"
30+
"github.com/cesanta/glog"
3131
)
3232

3333
type GoogleAuthConfig struct {

auth_server/authn/ldap_auth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"strings"
2525

2626
"github.com/go-ldap/ldap"
27-
"github.com/golang/glog"
27+
"github.com/cesanta/glog"
2828
)
2929

3030
type LDAPAuthConfig struct {

auth_server/authn/mongo_auth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"time"
2424

2525
"github.com/cesanta/docker_auth/auth_server/mgo_session"
26-
"github.com/golang/glog"
26+
"github.com/cesanta/glog"
2727
"golang.org/x/crypto/bcrypt"
2828
"gopkg.in/mgo.v2"
2929
"gopkg.in/mgo.v2/bson"

auth_server/authn/tokendb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"golang.org/x/crypto/bcrypt"
2626

2727
"github.com/dchest/uniuri"
28-
"github.com/golang/glog"
28+
"github.com/cesanta/glog"
2929
"github.com/syndtr/goleveldb/leveldb"
3030
)
3131

auth_server/authz/acl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"strings"
1212

1313
"github.com/cesanta/docker_auth/auth_server/authn"
14-
"github.com/golang/glog"
14+
"github.com/cesanta/glog"
1515
)
1616

1717
type ACL []ACLEntry

auth_server/authz/acl_mongo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"errors"
55
"fmt"
66
"github.com/cesanta/docker_auth/auth_server/mgo_session"
7-
"github.com/golang/glog"
7+
"github.com/cesanta/glog"
88
"gopkg.in/mgo.v2"
99
"gopkg.in/mgo.v2/bson"
1010
"io"

auth_server/authz/ext_authz.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"strings"
2424
"syscall"
2525

26-
"github.com/golang/glog"
26+
"github.com/cesanta/glog"
2727
)
2828

2929
type ExtAuthzConfig struct {

auth_server/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030

3131
"github.com/cesanta/docker_auth/auth_server/server"
3232
"github.com/facebookgo/httpdown"
33-
"github.com/golang/glog"
33+
"github.com/cesanta/glog"
3434
fsnotify "gopkg.in/fsnotify.v1"
3535
)
3636

0 commit comments

Comments
 (0)