Merge pull request #14 from LK4D4/add_logging

Add logging and more info
This commit is contained in:
Michael Crosby 2015-12-08 11:38:13 -08:00
commit f8ee26ffca
7 changed files with 41 additions and 6 deletions

View file

@ -20,4 +20,5 @@ type Runtime interface {
Create(id, bundlePath string, stdio *Stdio) (Container, error)
// StartProcess adds a new process to the container
StartProcess(Container, specs.Process, *Stdio) (Process, error)
Type() string
}