virtcontainers: Fix typo in logger message

There is a typo "sandox" instead of "sandbox" in a logger warning

Fixes: #2405

Signed-off-by: Christophe de Dinechin <dinechin@redhat.com>
This commit is contained in:
Christophe de Dinechin 2020-01-21 16:29:15 +01:00 committed by Christophe de Dinechin
parent 73a63baab5
commit 316b5f2b2c

View File

@ -1844,7 +1844,7 @@ func (s *Sandbox) cgroupsUpdate() error {
func (s *Sandbox) cgroupsDelete() error {
s.Logger().Debug("Deleting sandbox cgroup")
if s.state.CgroupPath == "" {
s.Logger().Warnf("sandox cgroups path is empty")
s.Logger().Warnf("sandbox cgroups path is empty")
return nil
}