From 8873ac26a583cd89c127684aa4d7c8f9d237db80 Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Fri, 25 Mar 2016 14:21:30 -0700 Subject: [PATCH] Remove log from seccomp package Logging in packages is bad, mkay. Signed-off-by: Michael Crosby --- libcontainer/seccomp/seccomp_linux.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/libcontainer/seccomp/seccomp_linux.go b/libcontainer/seccomp/seccomp_linux.go index 623e22774..ec0ac1c0b 100644 --- a/libcontainer/seccomp/seccomp_linux.go +++ b/libcontainer/seccomp/seccomp_linux.go @@ -5,7 +5,6 @@ package seccomp import ( "bufio" "fmt" - "log" "os" "strings" "syscall" @@ -167,7 +166,6 @@ func matchCall(filter *libseccomp.ScmpFilter, call *configs.Syscall) error { // Ignore it, don't error out callNum, err := libseccomp.GetSyscallFromName(call.Name) if err != nil { - log.Printf("Error resolving syscall name %s: %s - ignoring syscall.", call.Name, err) return nil }