mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-02 09:52:38 +00:00
logrus offers better control over log-levels. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
12 lines
200 B
Go
12 lines
200 B
Go
// +build !darwin
|
|
|
|
package main
|
|
|
|
import (
|
|
log "github.com/Sirupsen/logrus"
|
|
)
|
|
|
|
func run(cpus, mem, diskSz int, userData string, args []string) {
|
|
log.Fatalf("'run' is not supported yet on your OS")
|
|
}
|