Browse code

dockerd: removed debug messages

Solomon Hykes authored on 2013/02/20 06:04:19
Showing 1 changed files
... ...
@@ -774,9 +774,7 @@ func (srv *Server) CmdRun(stdin io.ReadCloser, stdout io.Writer, args ...string)
774 774
 		}
775 775
 		if *fl_attach {
776 776
 			future.Go(func() error {
777
-				log.Printf("CmdRun(): start receiving stdin\n")
778 777
 				_, err := io.Copy(cmd_stdin, stdin)
779
-				log.Printf("CmdRun(): done receiving stdin\n")
780 778
 				cmd_stdin.Close()
781 779
 				return err
782 780
 			})