log: remove crusty context, replace with shiny

Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
Stephen J Day 2016-11-30 17:40:26 -08:00
parent 29004dc3b4
commit aa4a1f851d
No known key found for this signature in database
GPG Key ID: FB5F6B2905D7ECF3
3 changed files with 4 additions and 3 deletions

View File

@ -1,10 +1,10 @@
package log
import (
"context"
"path"
"github.com/Sirupsen/logrus"
"golang.org/x/net/context"
)
var (

View File

@ -1,10 +1,10 @@
package log
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"golang.org/x/net/context"
)
func TestLoggerContext(t *testing.T) {

View File

@ -1,7 +1,8 @@
package log
import (
"golang.org/x/net/context"
"context"
"google.golang.org/grpc/grpclog"
)