serve/restic: Remove log message on Close
This commit is contained in:
parent
c1a3e363a6
commit
84776c4e43
1 changed files with 0 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
||||||
package restic
|
package restic
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
|
||||||
"net"
|
"net"
|
||||||
"os"
|
"os"
|
||||||
)
|
)
|
||||||
|
@ -34,7 +33,6 @@ func (s *StdioConn) Write(p []byte) (int, error) {
|
||||||
|
|
||||||
// Close closes both streams.
|
// Close closes both streams.
|
||||||
func (s *StdioConn) Close() error {
|
func (s *StdioConn) Close() error {
|
||||||
log.Printf("Server.Close()\n")
|
|
||||||
err1 := s.stdin.Close()
|
err1 := s.stdin.Close()
|
||||||
err2 := s.stdout.Close()
|
err2 := s.stdout.Close()
|
||||||
if err1 != nil {
|
if err1 != nil {
|
||||||
|
|
Loading…
Reference in a new issue