Merge pull request #8805 from vieux/update_sysinfo_to_logrus

update `pkg` to logrus
Upstream-commit: d42bcc065ad637dc41f348c37e50167aebb5b54a
Component: engine
This commit is contained in:
Jessie Frazelle
2014-10-27 12:26:52 -07:00
4 changed files with 7 additions and 4 deletions
+2 -1
View File
@@ -4,8 +4,9 @@ import (
"encoding/json"
"fmt"
"io"
"log"
"time"
log "github.com/Sirupsen/logrus"
)
type JSONLog struct {
+2 -1
View File
@@ -2,9 +2,10 @@ package proxy
import (
"io"
"log"
"net"
"syscall"
log "github.com/Sirupsen/logrus"
)
type TCPProxy struct {
+2 -1
View File
@@ -2,12 +2,13 @@ package proxy
import (
"encoding/binary"
"log"
"net"
"strings"
"sync"
"syscall"
"time"
log "github.com/Sirupsen/logrus"
)
const (
+1 -1
View File
@@ -2,10 +2,10 @@ package sysinfo
import (
"io/ioutil"
"log"
"os"
"path"
log "github.com/Sirupsen/logrus"
"github.com/docker/libcontainer/cgroups"
)