remove debug log

master
fangdingjun 6 years ago
parent f2771e0a03
commit fe7e74d225

@ -147,7 +147,7 @@ func (c *Cipher) Close() error {
} }
func (c *Cipher) free() { func (c *Cipher) free() {
log.Println("free cipher") //log.Println("free cipher")
c.Close() c.Close()
} }

@ -7,7 +7,6 @@ package gnutls
import "C" import "C"
import ( import (
"fmt" "fmt"
"log"
"runtime" "runtime"
) )
@ -79,7 +78,7 @@ func (h *Hash) Close() error {
return nil return nil
} }
func (h *Hash) free() { func (h *Hash) free() {
log.Println("free hash") //log.Println("free hash")
h.Close() h.Close()
} }

Loading…
Cancel
Save