1
0
mirror of https://github.com/rancher/os.git synced 2025-07-18 17:11:04 +00:00

Replace Sirupsen/logrus package with rancher/os/log (#2114)

This commit is contained in:
Julien Kassar 2018-01-24 04:57:02 -05:00 committed by niusmallnan
parent 6bd6f0c43c
commit a08ad16a01
2 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@ import (
"os/exec" "os/exec"
"syscall" "syscall"
log "github.com/Sirupsen/logrus"
"github.com/codegangsta/cli" "github.com/codegangsta/cli"
"github.com/rancher/os/log"
) )
func recoveryInitAction(c *cli.Context) error { func recoveryInitAction(c *cli.Context) error {

View File

@ -1,11 +1,11 @@
package init package init
import ( import (
log "github.com/Sirupsen/logrus"
composeConfig "github.com/docker/libcompose/config" composeConfig "github.com/docker/libcompose/config"
"github.com/docker/libcompose/yaml" "github.com/docker/libcompose/yaml"
"github.com/rancher/os/compose" "github.com/rancher/os/compose"
"github.com/rancher/os/config" "github.com/rancher/os/config"
"github.com/rancher/os/log"
"github.com/rancher/os/netconf" "github.com/rancher/os/netconf"
) )